6

我在字典上使用了一个简单的 NSLog:

NSLog(@"dict %@", dictionary); 

结果是:

...
"first_name" = Peter;
gender = male;
id = 1171548848;
"last_name" = Lapisu;
...

为什么“引号”中有一些键名,而另一些则没有?

4

1 回答 1

10

当字符串包含字母+数字以外的字符时,它将引用该字符串。

这是description函数的基本方法。

于 2012-07-18T09:37:32.670 回答