我使用的是iOS 6的新定位方法,它是工作的罚款。 我的观点是在纵向模式呈现,当我presentviewcotrnoller,并将其旋转到横向,关闭那些视图 - 控制它恢复的方向。 意味着它应该留在景观,但它成为肖像。 这里是我的代码。
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}
// Tell the system It should autorotate
- (BOOL) shouldAutorotate {
return YES;
}
// Tell the system which initial orientation we want to have
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationMaskPortrait;
}
我认为这是因为preferredInterfaceOrientationForPresentation方法的发生,但没有得到对this.Please帮助解决!
谢谢 !!