我有一个UIWebView,它包含一个extrenal iframe(用于youtube和vimeo)
有时它只是不加载。
返回并重新渲染视图时 - 它会加载
有没有人遇到过这个问题?
iframe示例:
NSString *htmlStr = @"<html><head><title>.</title><style>body,html,iframe{margin:0;padding:0; background-color: rgb(233,229,229);}</style></head><body><iframe src=\"http://player.vimeo.com/video/52600303\" width=\"320\" height=\"170\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></body></html>";
[cell.externalVideoWebview loadHTMLString:htmlStr baseURL:nil];
答案 0 :(得分:0)
虽然它位于vimeo文档中,但在iOS webkitallowfullscreen
和mozallowfullscreen
中并不需要 - 甚至可能有害,因为当我删除它们时 - 问题就解决了(iframe加载速度更快)