附上URL
你是说怎么监听到点击了 webView 网页上的按钮,跳转到另一个页面吗?
把 webView 的delegate设成self,然后有个回调函数:
delegate
self
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
见 http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIWebViewDelegate_Protocol/index.html
shouldStartLoadWithRequest方法
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
你是说怎么监听到点击了 webView 网页上的按钮,跳转到另一个页面吗?
把 webView 的
delegate
设成self
,然后有个回调函数:见 http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIWebViewDelegate_Protocol/index.html
shouldStartLoadWithRequest方法