目前我有一个关于 iOS 5 上的 shouldAutorotateToInterfaceOrientation 的特殊问题。简单地说,我的整个项目应该只处理肖像,除了应该处理 UIInterfaceOrientationMaskAllButUpsideDown 的图像查看器。
基本上,我把这段代码放在我所有的 viewControllers 中:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation*)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
然后,我有一个名为 PageViewController 的 ViewController。那里有一个调用 UIImapgePicker 控制器的按钮。一旦图像被选中,我就会关闭 ViewController(imagePicker),所以我回到 PageViewController 并推动 ImageViewController。
这使 :
3
PageViewController -> ImageViewController
1 | A 2
V |
谢谢你的帮助。
图像选择器控制器