工作,我過我的iframe
無處不在,它工作得很好,但在Objective-C
iOS
,它不UIWebView
工作,這裏是我的代碼,有人可以幫我嗎?由於我的iframe不與一個UIWebView
self.webView.scrollView.scrollEnabled = NO;
NSString *Str = [NSString stringWithFormat:@"<iframe frameborder=\"0\" width=\"359\" height=\"200\" src=\"//www.dailymotion.com/embed/video/%@\" allowfullscreen></iframe>", identifier];
[_webView loadHTMLString:Str baseURL:nil];
我的IFRAME:
<iframe frameborder="0" width="359" height="200" src="//www.dailymotion.com/embed/video/x5b4cfz" allowfullscreen></iframe>
您的寬度比某些型號的iPhone寬度寬(我不知道這是否是真正的問題),我建議您使用wkwebview而不是iwebview。 – Mozahler