在运行时编写setting.bundle
我可以在设计时编写一个设置包,但我需要使其内容根据特定条件出现,
我可以这样做吗?如果是的话,有任何示例代码,以及将此代码放在哪里
最好的问候
I can write at design time a setting bundle, but I need to make its content appear according to certain condition
can I do that , if yes any sample code, and where to put this code
Best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您的应用程序在 iPhone 上运行时,您无法动态创建 Settings.bundle 并将其写出。它需要包含在代码签名应用程序包中。
不过,您可以做的是自定义已创建的捆绑包的内容和内容。 UI 基于这些特定条件。 EG不同的偏好加载不同的字符串或图形。
You can't dynamically create a Settings.bundle and write it out while your application is running on the iPhone. It needs to be included in the code signed application package.
What you can do, though, is customize your already created bundle's content & UI based on those certain conditions. E.G. different preferences load different strings or graphics.