如何链接一个iboutlet和两个xib文件

发布于 2024-11-25 12:46:21 字数 253 浏览 1 评论 0原文

如何在两个不同的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2024-12-02 12:46:21

您无法使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文