Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的视图控制器中有一个 UIWebView 嵌入了 YouTube 视频,当用户单击它时,它会播放视频。我希望 webview 能够旋转,但不是它所持有的视图控制器。有没有解决这个问题的方法?这是一个iOS6及以上支持的应用程序。
在您的shouldAutorotateToInterfaceOrientation方法中,将 UIWebView 更改为新方向,然后返回 NO。
shouldAutorotateToInterfaceOrientation
这样视图控制器将保持原样,但您可以对 UIWebView 执行任何您需要执行的操作,以使其在新方向上正确显示。