Magic Studio

专心做有逼格的APP!

ios屏幕旋转

屏幕旋转

// ios 5、6都有这个方法

- (BOOL)shouldAutorotate{

    returnYES;

}

//ios6有效 

- (NSUInteger)supportedInterfaceOrientations{

    returnUIInterfaceOrientationMaskLandscape;

}

 

//ios5有效 

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{

        return ((toInterfaceOrientation==UIInterfaceOrientationLandscapeLeft)||(toInterfaceOrientation==UIInterfaceOrientationLandscapeRight));

}

posted on 2013-09-20 11:29  Mr 布鲁斯  阅读(224)  评论(0编辑  收藏  举报

导航