美文网首页iOS开发记录
iOS开发之UIColor-RGB

iOS开发之UIColor-RGB

作者: 何展星 | 来源:发表于2015-11-29 13:11 被阅读0次

    //  16 进制色值转换     使用方法 ZXColorFromRGB(0xffffff);

    #define ZXColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

    //   RGB 色值    

    #define ZXColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0]

    #define ZXColorRGBA(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:a]

    // RGB  随机色  

    #define ZXRandomColor QNColor(arc4random_uniform(256), arc4random_uniform(256), arc4random_uniform(256))

    相关文章

      网友评论

        本文标题:iOS开发之UIColor-RGB

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