如何允许用户在app中使用特定方向的应用程序?

时间:2015-11-30 11:43:57

标签: ios objective-c xcode device-orientation

我正在开发一个应用程序,其中使用设置选项我希望用户选择他自己的首选方向为应用程序,如portait,landscape或两者...我想保存他的首选方向&只允许用户首选定位...如果有可能,我该如何实现?提前谢谢..

1 个答案:

答案 0 :(得分:0)

使用以下代码手动更改方向

[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];

将方向保存在nsuserdefaults中,如下所示,

[[NSUserDefaults standardUserDefaults] setValue:@"portrait" forKey:@"orientation"];