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.
如何使用相同的 IBOutlet 变量在两个不同的 xib 文件中但在同一个项目中链接到 UILabel?
我想使用 initWithNib 函数切换这些 xib 文件。当我尝试加载其他 xib 文件时出现错误
setValue:forUndefinedKey:]:这个类不符合键“一些 ibooutlet 变量”的键值编码。
如何使用相同的 IBoutlet 变量加载另一个 xib 文件。这样做的原因是我不需要对代码进行太多修改。
您不能使用 initWithNib 来“切换”。因为你已经用一个 xib 初始化了你的 viewController。您可以创建一个新的 viewController 并使用第二个 xib 对其进行初始化。