Method Swizzling配合YTKNetWorking实战

真真好久没有写博客了。

Method Swizzling的介绍见女神博客:

http://blog.csdn.net/yiyaaixuexi/article/details/9374411

YTKNetWorking 见:
https://github.com/yuantiku/YTKNetwork?utm_source=tuicool

YTKNetWorking有个配置网络请求的类叫YTKNetworkAgent,在其中

_manager = [AFHTTPRequestOperationManager manager];

这个方法是非公开的。

而实际应用中,会需要改变网络请求的一些配置,所以考虑用Method Swizzling去处理:

//AFNet支持text.
YTKNetworkAgent *agent = [YTKNetworkAgent sharedInstance];
[agent setValue:[NSSet setWithObjects:@"application/json", @"text/plain", @"text/javascript", @"text/json",@"text/html",@"text/css", nil] forKeyPath:@"_manager.responseSerializer.acceptableContentTypes"];

//AFNet支持Https 测试环境下忽略https证书。。
[agent setValue:@YES forKeyPath:@"_manager.securityPolicy.allowInvalidCertificates"];

已经弃用,欢迎移步我的小专栏:
https://xiaozhuanlan.com/dahuihuiiOS

你可能感兴趣的:(Method Swizzling配合YTKNetWorking实战)