摘要:
本节纪录学习WebView的心得1.包含web的controller遵从UIWebViewDelegate协议。2.定义UIWebView 与 URL@property (nonatomic, strong) UIWebView *mainWebView;@property (nonatomic, strong) NSURL *URL;3.发送Web页面请求- (void)loadView{ mainWebView = [[UIWebViewalloc] initWithFrame:[UIScreenmainScreen].bounds]; mainWebView.delegate = s.. 阅读全文