如何链接一个iboutlet和两个xib文件
如何在两个不同的 xib 文件中但在同一个项目中使用相同的 IBOutlet 变量链接到 UILabel?
我想使用 initWithNib 函数切换这些 xib 文件。 当我尝试加载其他 xib 文件时,我收到错误
setValue:forUndefinedKey:]: 对于键“某些 ibooutlet 变量”,该类不符合键值编码。
我如何使用相同的 IBoutlet 变量加载其他 xib 文件。这样做的原因是我不需要对代码进行太多修改。
How can i use the same IBOutlet variable to be linked to UILabel in two different xib files but in the same project?
I want to switch these xib files using initWithNib function.
When i try to load the other xib file i am getting an error
setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key 'some ibooutlet variable'.
How can i load the other xib file by using the same IBoutlet variable.Reason for doing so is that i need not have to make much modification in the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 initWithNib 进行“切换”。 因为您已经使用一个 xib 初始化了 viewController。您可以创建一个新的 viewController 并使用第二个 xib 对其进行初始化。
You can't "switch" by using initWithNib. Because you already have initialized your viewController with one xib. What you can, is create a new viewController and initialize it with the second xib.