奇怪的 loadNibNamed 行为

发布于 2024-10-13 21:47:26 字数 284 浏览 5 评论 0原文

我有一个基于文档的 Cocoa 应用程序。在运行时,我通过调用 [NSBundle loadNibNamed:@"inspectorNIB"owner:self] 从包中加载额外的笔尖(其中 selfNSDocument)。

奇怪的是,当加载包成功时,它再次调用 NSDocumentawakeFromNib 方法,导致不必要的第二次初始化。这是预期的行为吗?我怎样才能抑制它?

I have a document-based Cocoa app. During runtime, I load an additional nib from the bundle by invoking [NSBundle loadNibNamed:@"inspectorNIB" owner:self] (where self is the NSDocument).

Strangely enough, while loading the bundle succeeds, it invokes the NSDocument's awakeFromNib method again, causing an unnecessary second initialisation. Is this expected behaviour? How can I suppress it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陪你到最终 2024-10-20 21:47:26

是的,如果在 nib 中引用了该对象,则会为加载的每个 nib 调用 -awakeFromNib 。如果您想避免进行两次设置,可以设置一个 BOOL 实例变量并进行检查:

if (!alreadyDidNibLoadStuff) {
    // do nib load stuff
    alreadyDidNibLoadStuff = YES;
}

Yes, -awakeFromNib is called for each nib that's loaded if the object is referenced in the nib. If you want to avoid doing setup twice, you can set a BOOL instance variable and do a check:

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