gpt4 book ai didi

ios - <从值中提取数据失败> 在 NSDictionary

转载 作者:可可西里 更新时间:2023-11-01 02:59:32 25 4
gpt4 key购买 nike

当我将数据从 Web 服务转换为 NSDictionary 时,我遇到了困难。但是在 Debug模式下访问控制台时它返回,而当我将字典的值与 View 绑定(bind)时它完美地工作。下面是代码:-

NSDictionary *responseDict =  [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&e];

在控制台,我正在使用 po [dictName valueForKey:@"Status"] 以及 po [dictName objectForKey:@"Status"]。遵循几个步骤但对我不起作用1.在此模式下已将优化级别设置为无。2.在此模式下将方案编辑为 Debug模式。

最佳答案

当我尝试从 Info.plist 获取信息时遇到了这个问题。最后我使用了字符串交换。

NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"Info"ofType:@"plist"];
NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
NSString *version = [data objectForKey:@"CFBundleShortVersionString"];
self.labVersion.text = [NSString stringWithFormat:@"(%@)", version];

关于ios - <从值中提取数据失败> 在 NSDictionary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40924336/

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