首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

[原]Ipad挟制横屏

2012-07-01 
[原]Ipad强制横屏1、只要在Info.plist里面Supported interface orientations (iPad)设置 UIInterfaceOrient

[原]Ipad强制横屏

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


2、在ViewController中设置:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{

? ? return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);

}

热点排行