zoukankan      html  css  js  c++  java
  • 控制控制器只支持横/竖屏

    重写控制器如下方法即可:

     1 - (NSUInteger)supportedInterfaceOrientations
     2 
     3 {
     4 
     5     /*
     6 
     7      UIInterfaceOrientationMaskPortrait
     8 
     9      UIInterfaceOrientationMaskLandscapeLeft
    10 
    11      UIInterfaceOrientationMaskLandscapeRight
    12 
    13      UIInterfaceOrientationMaskPortraitUpsideDown
    14 
    15      UIInterfaceOrientationMaskLandscape = (UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight),
    16 
    17      UIInterfaceOrientationMaskAll = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown),
    18 
    19      UIInterfaceOrientationMaskAllButUpsideDown = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight),
    20 
    21      */
    22 
    23     return UIInterfaceOrientationMaskLandscape;
    24 
    25 }
  • 相关阅读:
    DDoS攻击
    CSRF攻击
    正向代理和反向代理
    DNS协议
    四次挥手
    Nginx重要概念之lingering_close
    Nginx重要概念之pipeline
    Nginx重要概念之keepalive
    http1.0、http1.1、http2.0三者的区别
    Vue axios封装二
  • 原文地址:https://www.cnblogs.com/Rinpe/p/4888335.html
Copyright © 2011-2022 走看看