关于 NIB 文件的问题

发布于 2024-11-05 02:59:15 字数 104 浏览 1 评论 0原文

我在某处读到过(我不记得在哪里),将 UI 组件拆分为不同的 NIB 文件(并在需要时加载它们)而不是将它们全部放在一个 NIB 文件中可以提高性能。这是真的吗?如果是这样,权衡有多大? 谢谢。

I read somewhere(I don't remember where) that splitting your UI components into different NIB files (and loading them whenever needed) rather than putting all of them in one NIB file increases performance. Is that true? If so, how big is the trade off?
Thanks.

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

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

发布评论

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

评论(1

杀手六號 2024-11-12 02:59:15

是的,这是真的。权衡取决于您的用户界面。当应用程序加载 NIB 文件时,它需要加载该 NIB 的所有内容,因此将其拆分可以让您一次只将部分 UI 存储在内存中(例如,如果您在第二个 NIB 中有一个屏幕)文件,仅在需要时才会进入内存)。

Yes, it's true. The trade off depends on your UI. When the app loads a NIB file, it need to load all the contents of this NIB, so spliting it allow you to have only part of your UI on the memory at a time (for example, if you have a screen in a second NIB file, it will only go to memory when it is needed).

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