我下载框架 JSON,添加到我的项目中,我认为它是正确添加的,因为当我放
#import <JSON/JSON.h>
我没有任何警告。但是当我想使用它时,事情就开始了:
NSMutableDictionary * attachement = [NSMutableDictionary dictionary];
NSString *requestJson = [attachement JSONRepresentation];
但我对 JSONRepresentation 有一个警告:
Instance method '-JSONRepresentation' not found (return type defaults to 'id')
我该如何解决?
谢谢