是否有类似 viewDidLoad 的东西用于加载应用程序的主 xib?

发布于 2024-08-18 13:46:22 字数 89 浏览 5 评论 0原文

正如在应用程序的 Info.plist 中使用“主 nib 文件基本名称”定义的那样。我应该只使用 applicationDidFinishLaunching 吗?

As in the one defined with "Main nib file base name" in the app's Info.plist. Should I just use applicationDidFinishLaunching?

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

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

发布评论

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

评论(1

梦亿 2024-08-25 13:46:22

是的,applicationDidFinishLaunching: 在主笔尖加载后被调用。

另外,根据 文档(适用于 iPhone OS 3.0):

建议您实施
应用程序:didFinishLaunchingWithOptions:
而不是这个方法。查看班级
差异的描述
两者之间的调用顺序
方法。

Yes, applicationDidFinishLaunching: gets called after the main nib has been loaded.

Also, according to the documentation (for iPhone OS 3.0):

It is recommended that you implement
application:didFinishLaunchingWithOptions:
instead of this method. See the class
description for the differences in
calling sequences between the two
methods.

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