我在导航控制器中有一个 UIView,我试图阻止这个视图进入景观,但是我尝试使用的方法永远不会触发..代码低于任何帮助将不胜感激..
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if(interfaceOrientation == UIInterfaceOrientationLandscapeRight)
{
return NO;
}
else if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
{
return NO;
}
return NO;
}