我正在使用wkwebview并在目标c中加载一个url。加载wkwebview之前,我需要显示活动指示器。 wkwebview有任何委托方法吗?
-(void)viewWillAppear:(BOOL)animated{
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
[spinner setCenter:CGPointMake(160,124)];
[self.view addSubview:spinner];
spinner.tag = 100;
[spinner startAnimating];
_homeWebView.opaque = true;
// http://ispatialtec.com/birdathon.php
_homeWebView.userInteractionEnabled = true;
[_homeWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.adbirdathon.ae/Birdathon/index.html"]]];
[spinner stopAnimating];
}
答案 0 :(得分:0)
是的,有<form method="POST" novalidate>
方法
WKNavigationDelegate
因此,请在那里移除微调器。