ios 6中如何禁止横屏
ios 6中如何禁止横屏
- (BOOL)shouldAutorotate
{
return NO;
}
把plist里面的Supported interface orientation 相关横屏的设置删掉后
- (BOOL)shouldAutorotateToInterfaceOrientation:UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}

浙公网安备 33010602011771号