有没有办法为SingleViewController
提供自动旋转功能,因为我们的iPhone应用程序中有多个ViewControllers,需要只为One进行自动旋转。
答案 0 :(得分:2)
是的,你可以用你的VC(不是旋转)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
//return (interfaceOrientation == UIInterfaceOrientationPortrait);
return NO;
}
// New Autorotation support for iOS 6.
- (BOOL)shouldAutorotate NS_AVAILABLE_IOS(6_0);
{
Return NO;
}
另见Apple Doc 这将有所帮助。