iOS 屏幕旋转

每个视图控制器都控制着自己的旋转方向,如果需要新的旋转权限需要模态出新的视图控制器(如navigation tabbar)

// 注册旋转通知

//发送通知

[[NSNotificationCenterdefaultCenter]postNotificationName:@"hengping"object:nil];

// 接收旋转通知

//接收通知

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(hengpingAction)name:@"hengping"object:nil];

限制权限

- (NSUInteger)supportedInterfaceOrientations {

returnUIInterfaceOrientationMaskPortrait;

}

打开权限

-(NSUInteger)supportedInterfaceOrientations

{

returnUIInterfaceOrientationMaskAll;

}

你可能感兴趣的:(iOS 屏幕旋转)