我想我的UIViewController可以自動旋轉,但只是它,而不是任何其他的uiviewcontroller。這個UIViewController被呈現在UINavigationController中,它不能自動旋轉。 此代碼適用於iOS 5和4,但不適用於iOS6。自動化不適用於iOS6
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return (YES);
}
- (BOOL)shouldAutorotate
{
return (YES);
}
- (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskAll);
}
THX的幫助:)