设置应用程序出现问题
我正在学习在 iPhone 中编写设置应用程序。我将项目和子节点添加到根属性列表中的这些项目。当我打开“设置”时,我可以在那里看到我的应用程序设置,但并非所有项目都会反映到设置中。我可以得到一个标题为用户名的文本字段。但是我无法获取密码的文本字段,我得到的只是一个文本字段,它不安全,所以我在该字段中写入的任何内容都不会显示为星星。这是我写的:
items2 dictionary
type string PSTextFieldSpecifier
isSecure Boolean YES
title string Password
key string password
我看不到在 plist 中保存的任何其他内容。我比较了我关注的学习书中的plist和我拥有的plist,它们是完全一样的。如果我构建并运行本书提供的项目,那就可以了,所有设置都在那里。设置应用程序有什么特殊考虑吗?
I'm learning to write a settings application in iPhone. I add items and subnodes to those items in the root property list. When I open Settings I can see my app setting there but not all the items are reflected to the settings. I can get a text field with title Username.But I can't get a textfield for password, all I get is a textfield, it's not secure, so anything I write in that field is not displayed as stars.Here's whar I write:
items2 dictionary
type string PSTextFieldSpecifier
isSecure Boolean YES
title string Password
key string password
And I can't see anything else I've saved in the plist. I compare the plist in the study book I follow and the one I have They're exactly the same. If I Build and Run the project provided by the book, it's ok, all the settings are there. Is there a special consideration with Settings App?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
isSecure
不应该是YES
吗?Shouldn't
isSecure
beYES
?