美文网首页
[UICGColor encodeWithCoder:] 以及O

[UICGColor encodeWithCoder:] 以及O

作者: 七维树 | 来源:发表于2017-05-03 15:34 被阅读174次

    错误描述:
    xcode 控制台提示错误:
    Assertion failure in -[UICGColor encodeWithCoder:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/
    友盟崩溃错误描述:
    Only RGBA or White color spaces are supported in this situation.

    原因:
    在设置导航背景颜色是使用 colorWithPatternImage: 方法导致错误崩溃
    [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"back.png"]]];

    解决办法:
    换用其他方法设置颜色,如[UIColor lightGrayColor] 即可。

    相关文章

      网友评论

          本文标题:[UICGColor encodeWithCoder:] 以及O

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