Ipad 和 Iphone
Ipad and Iphone
对于 IOS8 的最新版本,我的应用程序大部分处于纵向模式,但很少有用户需要在键盘填充的地方写入文本的屏幕,我希望用户能够切换到横向模式。这怎么可能?
您可以为那些特定的控制器实施 supportedInterfaceOrientations
方法并指定允许的方向。
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape | UIInterfaceOrientationMaskPortrait;
}
对于 IOS8 的最新版本,我的应用程序大部分处于纵向模式,但很少有用户需要在键盘填充的地方写入文本的屏幕,我希望用户能够切换到横向模式。这怎么可能?
您可以为那些特定的控制器实施 supportedInterfaceOrientations
方法并指定允许的方向。
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape | UIInterfaceOrientationMaskPortrait;
}