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.
故事板中的 ViewController 使用 initWithCoder 和解码器 UINibDecoder 激活。如何对我的对象进行编码,以便此 initWithCoder 稍后找到它们。我检查了是否使用:
[NSKeyedArchiver archivedDataWithRootObject:self];
编码函数显然是用不同的编码器调用的,因此对 initWithCoder 的新调用找不到它并返回 nil。
我如何“合并”它们?