IOS屏幕开启旋转,UIAlertController 弹窗后,
2017-01-03 本文已影响250人
动力机车
1、创建一个UIAlertController的category
2、重写这两个方法
- (BOOL)shouldAutorotate {
return NO;
}
-(NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
3、再import这个category
4、完成