我想在JSONRepresentation对象上调用NSMutableDictionary方法。我使用[userDict JSONRepresentation];调用它,但收到以下警告:

NSMutableDictionary may not responsd to '-JSONRepresentation'


谁能告诉我如何正确调用JSONRepresentation类型的对象上的NSMutableDictionary方法?

提前致谢。

最佳答案

JSONRepresentation方法来自json-framework。在您的项目中包括该框架并导入正确的标头,您应该一切顺利。

09-06 04:44