美文网首页
iOS 状态栏 隐藏/显示

iOS 状态栏 隐藏/显示

作者: 一切都是幻觉 | 来源:发表于2016-07-15 10:16 被阅读89次

    一般隐藏/显示方法

    //  显示状态栏 [[UIApplication sharedApplication] setStatusBarHidden:NO];
    //  隐藏状态栏 [[UIApplication sharedApplication] setStatusBarHidden:YES];
    
    

    如果以上方法无用

    //  在Info.plist添加一个新的row,"View controller-based status bar appearance",然后把键值设置为NO.
    

    本人初探 samurai 框架时遇到的问题

    Github: https://github.com/hackers-painters/samurai-native

    中文介绍:https://github.com/hackers-painters/samurai-native/blob/master/README_CN.md

    相关文章

      网友评论

          本文标题:iOS 状态栏 隐藏/显示

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