我想在JSONRepresentation
对象上调用NSMutableDictionary
方法。我使用[userDict JSONRepresentation];
调用它,但收到以下警告:
NSMutableDictionary may not responsd to '-JSONRepresentation'
谁能告诉我如何正确调用
JSONRepresentation
类型的对象上的NSMutableDictionary
方法?提前致谢。
最佳答案
JSONRepresentation
方法来自json-framework。在您的项目中包括该框架并导入正确的标头,您应该一切顺利。