美文网首页
IOS Snippet

IOS Snippet

作者: wxy325 | 来源:发表于2016-12-16 14:51 被阅读3次
    1. Config Background Color of Statue Bar
    + (void)configStatusBarBackgroundColor:(UIColor *)color {
        UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];
      
        if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) {
            statusBar.backgroundColor = color;
        }
    }
    
    1. Add PCH
      Build Settings -> Prefix Header
    $(SRCROOT)/[ProjectName]/[PCH_file_name].pch
    

    相关文章

      网友评论

          本文标题:IOS Snippet

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