在NSDictionary中<从数值中提取数据失败>
当我将数据从Web服务转换为NSDictionary时,我被困住了。 但是,当在debugging模式下访问控制台时,它会返回,而当我绑定字典的值与视图它完美的作品。 以下是代码: –
NSDictionary *responseDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&e];
在控制台我使用po [dictName valueForKey:@"Status"]
以及po [dictName objectForKey:@"Status"]
。 遵循几个步骤,但不适合我1.设置优化级别已经在这种模式下没有。 2.在此模式下编辑scheme已经debugging模式。
当我尝试从Info.plist
获取信息时遇到此问题。 最后我使用string交换。
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];