需要设置应用程序
我的应用程序使用“设置”捆绑包来管理“设置”应用程序中的首选项。
如何强制包含这些首选项?如果用户在没有设置其首选项的情况下启动应用程序,我可以告诉用户在使用应用程序之前应该设置首选项吗?
非常感谢!
My app use a Settings bundle to manage preferences from the Settings application.
How can I make mandatory the inclusion of these preferences? If the user starts the application without having set its preferences I can tell to the user that before using the application should set preferences?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更用户友好的方法是设置一个设置屏幕,如果尚未输入所需信息,则询问该信息。
要检测是否已设置任何内容,只需检查 [NSUserDefaults objectForKey:] 的返回即可。如果它为零,那么您就知道还没有输入任何内容。
The more user-friendly way to do this would be to have a setup screen that asks for the required information if it has not been entered yet.
To detect if anything has been set, just check the return from [NSUserDefaults objectForKey:]. If it is nil, then you know that nothing has been entered yet.