• Iphone和iPad适配, 横竖屏


    竖屏情况下: [UIScreen mainScreen].bounds.size.width = 320

    [UIScreen mainScreen].bounds.size.width = 568

    横屏情况下:

     [UIScreen mainScreen].bounds.size.width = 568

     [UIScreen mainScreen].bounds.size.height = 320

    UIViewController 和 UIWindow同理

     

    1. storyboard iphone和 iPad版

    即为iphone和ipad分别创建xib/storyboard文件

    Main_iPhone.storyboard

    Main_iPad.storyboard

    横竖屏

    苹果官方文档:

    When the user changes the device orientation, the system calls this method on the root view controller or the topmost presented view controller that fills the window. If the view controller supports the new orientation, the window and view controller are rotated to the new orientation. This method is only called if the view controller'€™s shouldAutorotate method returns YES.

    - (BOOL)shouldAutorotate
    
    {   
      
    return YES; } - (NSUInteger)supportedInterfaceOrientations {   return UIInterfaceOrientationMaskAll; }

    注意要写在最顶层视图控制器, (self.window.rootViewController) , 否则不会进入以上方法

    而且

    supportedInterfaceOrientations的返回值必须是

    UIInterfaceOrientationMaskLandscapeLeft 或者 UIInterfaceOrientationMaskLandscapeRight 或者...

    总之必须加Mask

     通知是当前线程异步

    tabbarcontroller 为 根控制器的情况

    - (BOOL)shouldAutorotate
    {
        return [self.selectedViewController shouldAutorotate];
    }
    
    
    - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
    {
        return [self.selectedViewController preferredInterfaceOrientationForPresentation];
    }
    
    
    - (NSUInteger)supportedInterfaceOrientations
    {
        return [self.selectedViewController supportedInterfaceOrientations];
    }

    navigationcontroller为根控制器的情况:

    - (BOOL)shouldAutorotate
    {
        return [self.viewControllers.lastObject shouldAutorotate];
    }
    
    
    - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
    {
        return [self.viewControllers.lastObject preferredInterfaceOrientationForPresentation];
    }
    
    
    - (NSUInteger)supportedInterfaceOrientations
    {
        return [self.viewControllers.lastObject supportedInterfaceOrientations];
    }
  • 相关阅读:
    读懂Netty的高性能架构之道
    大型网站架构演变和知识体系(转载)
    SAX,功能强大的 API
    防雪崩利器:熔断器 Hystrix 的原理与使用
    分布式系统设计系列 -- 基本原理及高可用策略
    分布式系统的事务处理
    分布式服务框架之服务化最佳实践
    深入理解 Java 虚拟机:JVM 高级特性与最佳实践
    内存屏障
    IntelliJ IDEA 2016 破解旗舰版
  • 原文地址:https://www.cnblogs.com/apem/p/4427328.html
Copyright © 2020-2023  润新知