BSAFNetWorking 0.1.0

BSAFNetWorking 0.1.0

Maintained by BlackStar.



  • By
  • BlackStar

BSAFNetWorking

对 AFNetWorking 进行封装
提供body体请求(setHTTPBody方式),提供表单格式方式请求(application/x-www-form-urlencoded)
目前没有对上传、下载进行封装,后续会补充

Usage
两种方式

  1. 直接下载导入
  2. pod 导入:pod 'BSAFNetWorking'

导入后 引入 #import <BSAFNetwroking.h>

//具体代码示例
NSString *url = [NSString stringWithFormat:@"https://www.apiopen.top/weatherApi?city=%@",cityName];
    
    SQApiRequestManager *manager = [SQApiRequestManager requestWithUrl:url parameter:nil requestMethod:REQUEST_GET];
    
    [manager startRequestWithSuccess:^(SQApiResponse *response) {
        
        NSLog(@"天气信息:%@",response.responseObject);
        WeatherModel *model = [[WeatherModel alloc]init];
        
        block(model,nil);
        
    } failure:^(SQApiResponseError *error) {
        block(nil,@"获取天气失败");
    }];