在我的iOS应用程序中,我在后台线程中做一些工作(使用performSelectorInBackground).在这个线程中,我使用NS
JSONSerialization及其类方法来解析JSON字符串:
self.json = [NSJSONSerialization JSONObjectWithData:self.data options:0 error:nil];
这个类方法(JSONObjectWithData)线程安全吗?我能确定吗?它在文档中写在哪里?
解决方法
我在这里有点猜测.
Immutable objects are generally thread-safe; once you create them,you
can safely pass these objects to and from threads.