美文网首页
ios 生成随机颜色

ios 生成随机颜色

作者: iOS劝退师 | 来源:发表于2021-11-23 11:30 被阅读0次
    - (UIColor *)randomColor {
        int R = (arc4random() % 256) ;
        int G = (arc4random() % 256) ;
        int B = (arc4random() % 256) ;
        
        return [UIColor colorWithRed:R/255.0 green:G/255.0 blue:B/255.0 alpha:1];
    }
    

    相关文章

      网友评论

          本文标题:ios 生成随机颜色

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