iOS

是否支持屏幕旋转 - iOS

2018-01-15  本文已影响10人  survivorsfyh

//是否支持旋转

- (BOOL)shouldAutorotate {

    return YES;

}

//支持所有的方向(具体转向可根据自身需求自行变更)

- (NSUInteger)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskAll;

}

//旋转空白

- (void)viewDidAppear:(BOOL)animated {

    self.view.frame = self.parentViewController.view.frame;

}

上一篇 下一篇

猜你喜欢

热点阅读