gpt4 book ai didi

objective-c - 如何在Objective-C的JSON中创建真/假

转载 作者:行者123 更新时间:2023-12-04 03:27:04 25 4
gpt4 key购买 nike

如何使用 NSJSONSerialization dataWithJSONObject 从 NSDictionary 获取 json 中的真/假(而不是“真”/“假”)?我应该在字典中存储哪些键才能得到它?

最佳答案

NSNumber包含 BOOL 的对象映射到 JSON“真”和“假”。
所以只需使用 @YES , @NO ,或一般 @(someBOOL) .例如:

NSDictionary *dict = @{@"this is": @YES};
NSData *data = [NSJSONSerialization dataWithJSONObject:dict options:0 error:NULL];
NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
// {"this is":true}

关于objective-c - 如何在Objective-C的JSON中创建真/假,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22411119/

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