在某ViewController强制转屏或者禁止转屏或者强制屏幕旋转方向。

这些方法都不能在subViewController中执行。
禁止/允许转屏:
- (BOOL)shouldAutorotate { return YES; }
屏幕旋转方向:
- (NSUInteger)supportedInterfaceOrientations { return (UIInterfaceOrientationMaskAll); }

评论

此博客中的热门博文

Delegate

LLVM相关技术文章收集

viewWillAppear不执行的解决办法