如何让ipad 启动时默认横屏

来源:互联网 发布:淘宝付款收不到验证码 编辑:程序博客网 时间:2024/04/30 17:31

方法一:

plist文件的Supported interface orientations项中将Portrait top和bottom更改为Landscape left和right。


方法二:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight||interfaceOrientation == UIInterfaceOrientationLandscapeLeft);   }

原创粉丝点击