– webView:shouldStartLoadWithRequest:navigationType:
Web ビューでハイパーリンク トリガーをクリックします。,何か方法はありますか?
質問する
915 次
1 に答える
0
//WebView will automatically load the hyperlink u need not to do anything out there except.
//Inherit <UIWebViewDelegate> in self;
urwebview.delegate=self;
In self implement delegate method
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
//Its call back receved whenever ur webview is navigated By clicking on hyperlink
}
于 2012-04-27T09:09:55.477 に答える