屏幕旋转
// ios 5、6都有这个方法
- (BOOL)shouldAutorotate{
returnYES;
}
//ios6有效
- (NSUInteger)supportedInterfaceOrientations{
returnUIInterfaceOrientationMaskLandscape;
}
//ios5有效
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
return ((toInterfaceOrientation==UIInterfaceOrientationLandscapeLeft)||(toInterfaceOrientation==UIInterfaceOrientationLandscapeRight));
}
欢迎加群互相学习,共同进步。QQ群:iOS: 58099570 | Android: 572064792 | Nodejs:329118122 做人要厚道,转载请注明出处!
本文转自张昺华-sky博客园博客,原文链接:http://www.cnblogs.com/sunshine-anycall/p/3330280.html
,如需转载请自行联系原作者