如何在objective-c 传递通过 UIColorFromRGB 的值
1个回答
推荐于2016-06-16 · 知道合伙人互联网行家
关注
展开全部
要检索的一个 NSString 对象 (着色) 但宏期望一个整数。
要从一个十六进制字符串获取一个整数,你可以使用NSScanner类。
沿的行:
unsigned int hexValue = 0;
NSScanner *scanner = [NSScanner scannerWithString:coloring];
[scanner setScanLocation:0]; // depends on your exact string format you may have to use location 1
[scanner scanHexInt:&hexValue];
shapeLayer.strokeColor = UIColorFromRGB(hexValue).CGColor;
要从一个十六进制字符串获取一个整数,你可以使用NSScanner类。
沿的行:
unsigned int hexValue = 0;
NSScanner *scanner = [NSScanner scannerWithString:coloring];
[scanner setScanLocation:0]; // depends on your exact string format you may have to use location 1
[scanner scanHexInt:&hexValue];
shapeLayer.strokeColor = UIColorFromRGB(hexValue).CGColor;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询