IOS6屏幕旋转

举报
清雨小竹 发表于 2022/09/24 23:55:22 2022/09/24
【摘要】 //1、首先在appDelegate中,把view添加到window中有两种方式、 self.window.rootViewController = self.view;[self.window addSubview:self.view.view]; //但是如果用第二种的话,在ios6.0中 再去设置屏幕旋转是没有任何效果的,必须...

  
  1. //1、首先在appDelegate中,把view添加到window中有两种方式、
  2. self.window.rootViewController = self.view;
  3. [self.window addSubview:self.view.view];
  4. //但是如果用第二种的话,在ios6.0中 再去设置屏幕旋转是没有任何效果的,必须使用第一种。在ios6.0以前的版本是没有这种分别的。
  5. 2、 开启全部方向屏幕旋转的方式
  6. iOS6.0之前: 只需这个方法返回yes即可
  7. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
  8. {
  9. return YES;
  10. }
  11. //iOS6.0中 需要这三个方法一起使用才可以
  12. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
  13. {
  14. return (toInterfaceOrientation != UIInterfaceOrientationMaskPortraitUpsideDown);
  15. }
  16. - (BOOL)shouldAutorotate
  17. {
  18. return YES;
  19. }
  20. - (NSUInteger)supportedInterfaceOrientations
  21. {
  22. return UIInterfaceOrientationMaskAllButUpsideDown;
  23. }
  24. //当然了关闭全部方向屏幕旋转的方式则把上面的返回值改为no即可
  25. iOS6.0之前:
  26. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
  27. {
  28. return NO;
  29. }
  30. iOS6.0
  31. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
  32. {
  33. return (toInterfaceOrientation == UIInterfaceOrientationPortrait);
  34. }
  35. - (BOOL)shouldAutorotate
  36. {
  37. return NO;
  38. }
  39. - (NSUInteger)supportedInterfaceOrientations
  40. {
  41. return UIInterfaceOrientationMaskPortrait;//只支持这一个方向(正常的方向)
  42. }
  43. 使用屏幕旋转常用的方法
  44. //视图旋转之前自动调用
  45. -(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
  46. NSLog(@"视图旋转之前自动调用");
  47. }
  48. //视图旋转方向发生改变时会自动调用
  49. -(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
  50. {
  51. NSLog(@"视图旋转方向发生改变时会自动调用");
  52. }
  53. //视图旋转完成之后会自动调用
  54. -(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
  55. NSLog(@"视图旋转完成之后自动调用");
  56. }

文章来源: zzzili.blog.csdn.net,作者:清雨小竹,版权归原作者所有,如需转载,请联系作者。

原文链接:zzzili.blog.csdn.net/article/details/8363199

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。