您的位置:首页 > 其它

xcode 5如何更改横屏竖屏

2014-03-06 15:02 281 查看
info plist里面修改
Supported interface orientations

Landscape (left home button) // 横屏

Landscape (right home button) // 横屏
Portrait (top home button) // 竖屏

Portrait (bottom home button) // 竖屏

RootViewController.mm里

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// return UIInterfaceOrientationIsLandscape( interfaceOrientation ); // 横屏
return
UIInterfaceOrientationIsPortrait( interfaceOrientation ); // 竖屏
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: