继承UIView基类 一般不可与用户交互
1.scalesPageToFit:对应属性检查器面板ScalesPageToFit是否缩放网页以适应该控件
2.dataDetectorTypes:(Detection) 支持如下枚举:
UIDataDetectorTypesPhoneNumber:自动检测网页上的电话号码,点击该号码就会拨号
UIDataDetectorTypeLink: 超链接
...Address: 网页上的地址
...CalendarEvent: 日历事件
..None:不检测任何内容
UIDataDetectorTypeAll:所有特殊内容
控制UIWebView加载内容:
-loadHTMLString:baseURL:加载并显示HTML字符串
loadRequest:加载并显示指定URL对应网页
-stringByEvaluatingJavaScriptFromString:执行指定的javaScript字符串,并返回执行结果。
-goBack:
-goForward:前进
-reload:
-stopLoading:
可设置delegate委托(必须实现UIWebViewDelegate协议):
UWVDProtocol:
-webView:shouldStartLoadWithRequest:navigationTypeL该UIWebView将要开始装在指定URL对应的网页时激发该方法
-webView:DidStartLoad:开始装载
-webViewDidFinishLoad:装载完成
-webView:didFailLoadWithError:装载响应出现错误时激发该方法
问题:
“App TransportSecurity has blocked a cleartext HTTP (http://) resource load since it isinsecure. Temporary exceptions can be configured via your app's Info.plistfile.”
简而言之:ATS禁止了HTTP的明文传输,因为它不安全。可以修改Info.plist文件,让它临时允许明文传输。
解决办法:
在Info.plist文件中添加"App Transport SecuritySettings", Type为"Dictionary",再添加"Allow Arbitray Loads", Type 为"Boolean",“Value”为“YES”即可。
7.0版本:
在Info.plist文件中添加”NSAppTransportSecurity", Type为"Dictionary",再添加”NSAllowArbitrayLoads", Type为"Boolean",“Value”为“YES”即可