UIWebViewDelegate methods not getting called

后端 未结 1 796
天命终不由人
天命终不由人 2021-01-19 14:21

I want to use UIWebViewDelegate methods. I set its delegate to self but still not working

-(void)webViewDidStartLoad:(UIWebView *)webView {
    NSLog(@\"Loa         


        
相关标签:
1条回答
  • 2021-01-19 14:26

    Do not write anything in viewDidLoad. Try putting webview related code viewDidAppear or any custom method. Cross check if your webview is connected properly in storyboard.

    0 讨论(0)
提交回复
热议问题