AFNetWorking过滤NSNULL

1、找到AFURLResponseSerialization.m这个文件

2、找到​@implementation AFJSONResponseSerializer

3、找到​init方法

4、self = [superinit];

if (!self) {

    return nil;

}

self.acceptableContentTypes = [NSSetsetWithObjects:@"application/json", @"text/json", @"text/javascript",@"text/html",@"text/plain", nil];

self.removesKeysWithNullValues = YES;//此属性可以过滤掉value为NULL的键值对

5、再使用manager的时候​,manager.responseSerializer=[AFJSONResponseSerializer serializer]; 这样调用,返回的id数据,就是json格式。

你可能感兴趣的:(AFNetWorking过滤NSNULL)