将 uicolor 存储在 plist 中
我正在尝试将 UIColor 存储在 plist 中。我看到了很多链接,但没有一个没有给出准确的答案。我的一些示例代码在下面,
CGColorRef color=[MyColor CGColor];
NSUInteger numComponents = CGColorGetNumberOfComponents(color);
const CGFloat *components=CGColorGetComponents(color);
NSArray *colorArray=[NSArray arrayWithObjects:(float)components[0],(float)components[1],nil];
它给出了“不适合我”任何人都可以告诉我将 uicolor 存储到 plist 的确切答案。提前致谢。您的建议对我很重要。请提供示例片段而不是发布链接。
I am trying to store UIColor in plist.I seen many links but none of those not given accurate answer.some of my sample code is below
CGColorRef color=[MyColor CGColor];
NSUInteger numComponents = CGColorGetNumberOfComponents(color);
const CGFloat *components=CGColorGetComponents(color);
NSArray *colorArray=[NSArray arrayWithObjects:(float)components[0],(float)components[1],nil];
it is giving Not working for me can any one tell me the exact answer to store uicolor into plist.Thanks in advance.Your suggestion is important for me.Please provide sample snippet rather than posting links.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将各个颜色(RGBA,如果您正在使用的颜色空间)单独存储在
NSNumber
数组中。原因是您只能将对象添加到
NSArray
中。float
或CGFloat
不是对象。You would need to store the individual colors separately (RGBA, if that is the color space you are using) in an array of
NSNumber
s.The reason for this is that you can only add objects to a
NSArray
. Afloat
orCGFloat
is not an object.