我可以只读取 plist 中的密钥吗?
我可以只从 plist 中读取键而不读取其值吗?如果我知道该值,我可以读取该键吗?
Can I read just the key from plist without its value, also if I know the value can I read the key ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
读取.plist:
获取所有键和所有值:
获取值对象的所有键:
Reading .plist:
Getting all keys and all values:
Getting all keys for an values object:
作为替代方案,您可以使用
allKeysForObject:
返回的方法,您可以通过调用
objectAtIndex:
方法从该数组中获取key。As an alternative, you can use
allKeysForObject:
method which returns,From that array you can get the key by invoking the
objectAtIndex:
method.使用
-[NSDictionary allKeysForObject:]
*。示例
*不知道为什么它返回 NSArray 对象而不是 NSSet 对象,因为键没有排序。哦,好吧。
Use
-[NSDictionary allKeysForObject:]
*.Example
*Dunno why it returns an NSArray object instead of an NSSet object, because keys are not ordered. Oh well.
为了读取应用程序安装文件夹中的值:
Jhaliya 的方法对我不起作用,然后我尝试了这种方法。
In order to read the values at app's installed folder:
Jhaliya's method has not worked for me, then I tried this method.