模拟UIWebView

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

//
//  ViewController.m
//  模拟UIWebView
//
//  Created by dc0061 on 15/12/10.
//  Copyright © 2015年 dc0061. All rights reserved.
//#import "ViewController.h"@interface ViewController ()<UISearchBarDelegate,UIWebViewDelegate>
{UISearchBar *_bar;UIWebView *_webView;UIToolbar *_toolbar;UIBarButtonItem *_backButton;UIBarButtonItem *_forwarButton;
}
@end@implementation ViewController- (void)viewDidLoad {[super viewDidLoad];[self layout];
}
- (void) layout{//添加搜索栏_bar=[[UISearchBar alloc]initWithFrame:CGRectMake(0, 20, 375, 50)];_bar.delegate=self;[self.view addSubview:_bar];//添加浏览器_webView =[[UIWebView alloc]initWithFrame:CGRectMake(0, 90, 375, 527)];_webView.delegate=self;[self.view addSubview:_webView];_toolbar=[[UIToolbar alloc]initWithFrame:CGRectMake(0, 617, 375, 50)];[self.view addSubview:_toolbar];_backButton =[[UIBarButtonItem alloc]initWithTitle:@"返回⬅️" style:UIBarButtonItemStyleDone target:self action:@selector(fanhui)];_forwarButton =[[UIBarButtonItem alloc]initWithTitle:@"前进→" style:UIBarButtonItemStyleDone target:self action:@selector(qianjin)];//空按钮,没有点击事件UIBarButtonItem *btnSpacing=[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];_toolbar.items=@[_backButton,btnSpacing,_forwarButton];
}#pragma mark UISearchBar代理方法
- (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar{[self request:searchBar.text];
}#pragma mark UIWebView开始时调用的方法
-(void) webViewDidStartLoad:(UIWebView *)webView{NSLog(@"UIWebView开始时调用的方法");[UIApplication sharedApplication].networkActivityIndicatorVisible=YES;
}
#pragma mark UIWebView加载结束时调用的方法
- (void) webViewDidFinishLoad:(UIWebView *)webView{_bar.text=[NSString stringWithFormat:@"%@",webView.request.URL];[UIApplication sharedApplication].networkActivityIndicatorVisible=NO;
}
- (void) request : (NSString *) name{NSURL *url;if([name hasPrefix:@"file://"]){//1获取文件位置NSRange rang=[name rangeOfString:@"file://"];NSString *urlName=[name substringFromIndex:rang.length];//获取文件位置url=[[NSBundle mainBundle]URLForResource:urlName withExtension:nil];}else{NSString *str=[NSString stringWithFormat:@"http://www.baidu.com/s?&wd=%@",name];str=[str stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];//将url先进行编码url=[NSURL URLWithString:str];}[_webView loadRequest:[NSURLRequest requestWithURL:url]];
}- (void) fanhui{[_webView goBack];
}- (void) qianjin{[_webView goForward];
}- (void)didReceiveMemoryWarning {[super didReceiveMemoryWarning];
}@end


转载于:https://my.oschina.net/u/2287505/blog/542226

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543847.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ruby 将日期转化为时间_Ruby中的日期和时间类

ruby 将日期转化为时间Ruby数据和时间类 (Ruby Data and Time Classes) In any program written in any language, at any point of time you may need to fetch the date and time of the system at that instant. Ruby facilitates you with three classes related to Date a…

AsyncHttpClien访问网络案例分析

Android数据存储的四种方式分别是&#xff1a;SharedPreferences存储、File文件存储、Network网络存储和sqlite数据库存储&#xff0c;网络存储需要使用AsyncHttpClient发送请求&#xff0c;并将数据存储到后台数据库中&#xff0c;关于AsyncHttpClient、HttpClient、HttpURLCo…

i2c-toos 交互数据_什么是CD-i(交互式光盘)?

i2c-toos 交互数据CD-i&#xff1a;交互式光盘 (CD-i: Compact Disk-Interactive) CD-i is an abbreviation of "Compact Disk-Interactive". It is a standard of software and hardware-based configuration of digital optical disc data storage, created mutual…

4g 中bis代表什么_BIS的完整形式是什么?

4g 中bis代表什么BIS&#xff1a;印度标准局 (BIS: Bureau of Indian Standards) BIS is an abbreviation of the Bureau of Indian Standards. It is the National Standard Body of India which is operating in the groundwork and execution of the standards, certificati…

Feature selection

原文:http://scikit-learn.org/stable/modules/feature_selection.html The classes in the sklearn.feature_selection module can be used for feature selection/dimensionality reduction on sample sets, either to improve estimators’ accuracy scores or to boost the…

ronald aai_AAI的完整形式是什么?

ronald aaiAAI&#xff1a;印度机场管理局 (AAI: Airport Authority of India) AAI is an abbreviation of the Airport Authority of India. It operates under the Ministry of Civil Aviation. It is in charge of creating, crafting, maintaining and enhancing the civil…

scala 环境变量_Scala变量的范围

scala 环境变量Scala变量范围 (Scala variables scope) Scope of the variable is the block of code until which the variable can be used within the scope of a variable. Any operation can be performed on it but accessing it outside the scope will give an error. …

使用Eclipse-Maven-git做Java开发(13)--导入git仓库的代码到eclipse

2019独角兽企业重金招聘Python工程师标准>>> 前面讲到了怎么使用osc的git服务进行代码托管。至此&#xff0c;我们已经可以使用git进行文件的版本管理了&#xff0c;甚至可以进行不需要IDE的编程了&#xff0c;但是我们绝大多数时候还是需要IDE的&#xff0c;接下来…

python 三维图直方图_Python | 阶梯直方图

python 三维图直方图A histogram is a graphical technique or a type of data representation using bars of different heights such that each bar groups numbers into ranges (bins or buckets). Taller the bar higher the data falls in that bin. A Histogram is one o…

ExtJS4.2学习(21)动态菜单与表格数据展示操作总结篇2

运行效果&#xff1a; 此文介绍了根据操作左侧菜单在右面板展示相应内容。 一、主页 先看一下跳转主页的方式&#xff1a;由在webapp根目录下的index.jsp跳转至demo的index.jsp 下面是demo的index.jsp的代码 <% page language"java" contentType"text/html; …

数据分析 数据清理_数据清理| 数据科学

数据分析 数据清理数据清理 (Data Cleaning) Data cleaning is the way toward altering information to guarantee that it is right, precise, and significant. The definition may be straightforward, yet information cleaning is utilized in numerous situations. Like…

jQuery之call()方法的使用

最近在做项目时候&#xff0c;写了几行关于DOM操作的代码&#xff0c;在方法中使用了this&#xff0c;在后期重构的时候&#xff0c;想将这段分离出来做成一个方法。 最开始想的很简单&#xff0c;就直接分离出来使用方法名称调用即可。 但是实际操作的时候没有效果&#xff0c…

GMTA的完整形式是什么?

GMTA&#xff1a;伟大的思想一致 (GMTA: Great Minds Think Alike) GMTA is an abbreviation of "Great Minds Think Alike". GMTA是“ Great Minds Think Alike”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media…

github的使用

GitHub操作总结 : 总结看不明白就看下面的详细讲解. GitHub操作流程 : 第一次提交 : 方案一 : 本地创建项目根目录, 然后与远程GitHub关联, 之后的操作一样; -- 初始化git仓库 :git init ; -- 提交改变到缓存 :git commit -m description ; -- 本地git仓库关联GitHub仓库 : g…

sql更改完整模式报错_SQL的完整形式是什么?

sql更改完整模式报错SQL&#xff1a;结构化查询语言 (SQL: Structured Query Language) SQL is an abbreviation of Structured Query Language. It is a programming language developed and designed for handling structured data in Relational Database Management System…

基于微服务架构,改造企业核心系统之实践

2019独角兽企业重金招聘Python工程师标准>>> 1. 背景与挑战 随着公司国际化战略的推行以及本土业务的高速发展&#xff0c;后台支撑系统已经不堪重负。在吞吐量、稳定性以及可扩展性上都无法满足日益增长的业务需求。对于每10万元额度的合同&#xff0c;从销售团队…

bkg bnc_BNC的完整形式是什么?

bkg bncBNC&#xff1a;刺刀Neill–Concelman (BNC: Bayonet Neill–Concelman) BNC is an abbreviation of "Bayonet Neill–Concelman". BNC是“刺刀Neill–Concelman”的缩写 。 It is also known as "British Naval Connector" or "Bayonet Nut …

使用visio 提示此UML形状所在的绘图页不是UML模型图的一部分 请问这个问题怎么解决?...

解决方法新建->选择软件与数据库模板->选择UML模型图->注意&#xff1a;如果不选择UML模型图的话&#xff0c;可能会出现无法编辑形状文本&#xff0c;提示“此UML形状所在的绘图页不是UML模型图的一部分&#xff0c;该形状设计用于利用UML模型图模板创建的绘图”关注…

iOS之 开发常用到的宏定义

不久前做过一个小项目种用到了就记录下来方便自己以后使用&#xff0c;一个非常实用的宏定义来打印函数名称等 #ifdef DEBUG #define DebugLog(fmt, ...) NSLog(("\n[文件名:%s]\n""[函数名:%s]\n""[行号:%d] \n" fmt), __FILE__, __FUNCTION__,…

agp模式_AGP的完整形式是什么?

agp模式AGP&#xff1a;加速图形端口 (AGP: Accelerated Graphics Port ) AGP is an abbreviation of the "Accelerated Graphics Port". AGP是“加速图形端口”的缩写 。 It was created and developed as a high-speed point-to-point channel for putting togeth…