关于 NIB 文件的问题
我在某处读到过(我不记得在哪里),将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是真的。权衡取决于您的用户界面。当应用程序加载 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).