Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 NSCoder 保存(我的意思是编码和解码)颜色,例如 ccc3、ccc4 等?
好像不支持。我能够解决它的唯一方法是保存整数,然后当我需要颜色时,我会从整数生成它们。
有没有使用 NSCoder 保存 ccc3、ccc4 颜色的正式方法?
即,我想保存;
ccColor4B topColor; ccColor4B bottomColor;
但似乎没有办法用 NSCoder 对它们进行编码或解码。
谢谢
现在没关系,我会继续对整数进行编码/解码,然后在我的代码中处理颜色。