读书人

[原]Ipad挟制横屏

发布时间: 2012-07-01 13:15:00 作者: rapoo

[原]Ipad强制横屏

1、只要在Info.plist里面Supported interface orientations (iPad)
设置 UIInterfaceOrientationLandscapeRight?


2、在ViewController中设置:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{

? ? return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);

}

读书人网 >移动开发

热点推荐