美文网首页
iOS 适配各个系统的隐藏状态栏

iOS 适配各个系统的隐藏状态栏

作者: Hai1丶HydrA | 来源:发表于2018-04-02 15:52 被阅读8次

    为适配各种版本,请使用一下方法:

    1. info.plist文件中添加View controller-based status bar appearance项设为NO
      (这种情况下view controller的prefersStatusBarHidden不会被调用)

    2.用

    [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:NO];
    

    的方法隐藏状态栏。

    相关文章

      网友评论

          本文标题:iOS 适配各个系统的隐藏状态栏

          本文链接:https://www.haomeiwen.com/subject/qglxhftx.html