'Wkwebview setDelegate Equivalent

No visible @interface for 'WKWebView' declares the selector 'setDelegate:'

[self.webView setDelegate:self];
[self.webView loadRequest:[[NSURLRequest alloc] initWithURL:[[NSURL alloc] initWithString:self.url]]];

if(HUD == nil){
    HUD = [[MBProgressHUD alloc] initWithView:self.webView];
    [self.webView addSubview:HUD];
    HUD.delegate = self;
    HUD.dimBackground = YES;
    [HUD setColor:[UIColor darkGrayColor]];
}
[HUD show:YES];

}

No visible @interface for 'WKWebView' declares the selector 'setDelegate:'



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source