你好,我为 web 服务创建了一个 json 字符串,我想输出名称和描述以在 NSLog 中显示它。我怎样才能做到这一点。到目前为止,这是我的代码:
dic = [NSJSONSerialization JSONObjectWithData:result options:kNilOptions error:nil];
NSLog(@"Results %@",[NSString stringWithFormat:@"%@",[[dic objectForKey:@"d"]objectForKey:@"Name"]]);
我收到此错误:
-[__NSCFString objectForKey:]: unrecognized selector sent to instance 0x6b50f30
当我在我的字典中创建一个 NSLog 时,我得到了这个:
{
d = "{
\n \"Name\": \"Apple\",
\n \"Beschreibung\": \"Steve Jobs ist tot\"}";
}
我来自 werbservice 的 json 字符串如下所示:
string json = @"{
""Name"": ""Apple"",
""Beschreibung"": ""Steve Jobs ist tot""}";