在同一控制器范围内更改方向

时间:2014-09-05 06:57:32

标签: ios

我在一个视图控制器中有三个uiwebviews。最初,应用程序仅在常规设置中设置为横向模式。最初我加载了隐藏另外两个webview的第一个webview。现在当我加载第二个webview时,我需要允许这个特定webview的所有方向。是否可以在同一控制器范围内更改Webview的方向?有什么想法吗?

1 个答案:

答案 0 :(得分:0)

#import <objc/message.h>

 if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
     objc_msgSend([UIDevice currentDevice], @selector(setOrientation:),    UIInterfaceOrientationPortrait );
}