我想在UIWebview上显示UIButton。 然而,UIButton显示在webview背后。
我尝试过以下代码:
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
if(navigationType==UIWebViewNavigationTypeLinkClicked && [[request.URL absoluteString] isEqualToString:myURL])
{
[_myBtn bringSubviewToFront:self.view];
[self.myWebView addSubview:_myBtn];
//i have tried this aswell
//[_myBtn bringSubviewToFront:self.myWebView];
//[self.view addSubview:_myBtn];
return NO;
}
return YES;
}
任何想法,我做错了什么? 感谢
答案 0 :(得分:0)
注释掉上面的代码,然后将UIButton
移到故事板中的UIWebView
下方,然后检查。