iOS- 支持某个页面旋转
2018-04-02 本文已影响51人
醉叶惜秋
/* 旋转 */
-
(BOOL)shouldAutorotate {
return YES;
}
//支持旋转方向 -
(UIInterfaceOrientationMask)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}
/* 旋转 */
(BOOL)shouldAutorotate {
return YES;
}
//支持旋转方向
(UIInterfaceOrientationMask)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}