gpt4 book ai didi

iphone - 属性列表内的 bool 值(简单!)

转载 作者:行者123 更新时间:2023-12-03 20:34:46 28 4
gpt4 key购买 nike

我现在正在编写一个小型应用程序,在读取属性列表时遇到问题...

我的确切问题是:如何从属性列表中读出 bool 值?或者更好的是我如何从 NSDictionary 中读出这个 bool 值?

谢谢,mavrick3。

最佳答案

这些对象存储为 NSNumber 对象,因此要检索 BOOL,您应该使用此方法:

BOOL myBool = [someNSNumberObject boolValue];

要从字典中检索,请执行以下操作:

BOOl myBool = [[someDictionary objectForKey:@"someKey"] boolValue];

此处的文档:http://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSNumber_Class/Reference/Reference.html#//apple_ref/occ/instm/NSNumber/boolValue

关于iphone - 属性列表内的 bool 值(简单!),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4782667/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com