我目前正在阅读 Pragmatic iOS 6 书籍,并且无法理解第 3 章中关于 GCD 部分下解释的以下代码行:
NSJSONSerialization *jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError];
//... some code here
NSArray *tweets = (NSArray *) jsonResponse; //<-- this line
是说NSJSONSSerialization
对象可以自动返回 NSSArray 的实例,然后将其存储在tweets
? 我检查了Apple 文档,但只看到了有关使用限制的项目NSJSONSerialization
,但没有看到它可以转换为的对象。
谢谢!