我可以想到几种方法,例如将每个颜色分量保存为浮点数,将数组保存为可转换的。从图案图像中保存颜色可能会稍微复杂一些,但我想您可以将图像的名称保存为字符串并将其插入到创建代码中。
我是否走在正确的轨道上,否则一般来说,完成这项任务最好和最有效的方法是什么?
您可以将其转换UIColor
为NSData
然后存储它:
NSData *theData = [NSKeyedArchiver archivedDataWithRootObject:[UIColor blackColor]];
然后您可以将其转换回您的UIColor
对象:
UIColor *theColor = (UIColor *)[NSKeyedUnarchiver unarchiveObjectWithData:theData];
升级版:
在有关存储数据的评论中回答您的问题,最简单的方法是将其存储在NSUserDefaults
:
NSData *theData = [NSKeyedArchiver archivedDataWithRootObject:[UIColor blackColor]];
[[NSUserDefaults standardUserDefaults] setObject:theData forKey:@"myColor"];
然后检索它:
NSData *theData = [[NSUserDefaults standardUserDefaults] objectForKey:@"myColor"];
UIColor *theColor = (UIColor *)[NSKeyedUnarchiver unarchiveObjectWithData:theData];
我已经制作了奥列格答案的Swift 3版本,并对代码进行了一些修改。
extension UIColor {
class func color(withData data:Data) -> UIColor {
return NSKeyedUnarchiver.unarchiveObject(with: data) as! UIColor
}
func encode() -> Data {
return NSKeyedArchiver.archivedData(withRootObject: self)
}
}
Swift 5 版本的扩展
extension UIColor {
class func color(data:Data) -> UIColor? {
return try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? UIColor
}
func encode() -> Data? {
return try? NSKeyedArchiver.archivedData(withRootObject: self, requiringSecureCoding: false)
}
}
用法
var myColor = UIColor.green
// Encoding the color to data
let myColorData = myColor.encode() // This can be saved into coredata/UserDefaulrs
let newColor = UIColor.color(withData: myColorData) // Converting back to UIColor from Data