AFNetworking从1.0 到2。0的转换

最近boss要求融合以前的老代码  那个有多老  。。。。 O(∩_∩)O哈哈~   现在我在用3.04版的AFNetworking了 哥!!!  他是1.0版本的 /(ㄒoㄒ)/~~


经过颇多曲折  很多泪流 最终解决 心累啊  


1.0版本
-(void)requestHttp:(NSString*)baseUrlStr actionPath:(NSString*)path parameter:(NSMutableDictionary*)parameter
           success:(void (^)(NSURLRequest *request, NSHTTPURLResponse *response, id JSON))success
           failure:(
void (^)(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON))failure{
   
   
NSURL *baseUrl = [NSURLURLWithString:baseUrlStr];
    [parameter
setObject:@"2"forKey:@"AppOS"];
    [parameter
setObject:@"1"forKey:@"VersionFlag"];
   
   
NSArray *array = [[AppDelegategetAppVersion] componentsSeparatedByString:@"."];
   
int a = [[array objectAtIndex:0] intValue]<<24;
   
int b = [[array objectAtIndex:1] intValue]<<16;
   
int c = [[array objectAtIndex:2] intValue]<<8;
   
int d = [[array objectAtIndex:3] intValue];
   
    [parameter
setObject:[NSStringstringWithFormat:@"%i",a|b|c|d] forKey:@"AppVersion"];
   
   
   
KAFHTTPClient *httpClient = [[KAFHTTPClientalloc] initWithBaseURL:baseUrl];
   
NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST"path:path parameters:parameter];
                  [request
setTimeoutInterval:10];
                  [
AFJSONRequestOperationaddAcceptableContentTypes:[NSSetsetWithObject:@"text/plain"]];
                 
AFJSONRequestOperation *operation = [AFJSONRequestOperationJSONRequestOperationWithRequest:request
                                                                                                     
success:success
                                                                                                     
failure:failure];
                  [operation
start];
}


2.0版本
-(void)requestHttp:(NSString*)baseUrlStr actionPath:(NSString*)path parameter:(NSMutableDictionary*)parameter
           success:(
void (^)(NSURLRequest *request, NSHTTPURLResponse *response, id JSON))success
           failure:(
void (^)(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON))failure{
   
   
NSString *url = [baseUrlStr stringByAppendingString:path];
    [parameter
setObject:@"2"forKey:@"AppOS"];
    [parameter
setObject:@"1"forKey:@"VersionFlag"];
   
   
NSArray *array = [[AppDelegategetAppVersion] componentsSeparatedByString:@"."];
   
int a = [[array objectAtIndex:0] intValue]<<24;
   
int b = [[array objectAtIndex:1] intValue]<<16;
   
int c = [[array objectAtIndex:2] intValue]<<8;
   
int d = [[array objectAtIndex:3] intValue];
   
    [parameter
setObject:[NSStringstringWithFormat:@"%i",a|b|c|d] forKey:@"AppVersion"];
   
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManagermanager];
    manager.
responseSerializer.acceptableContentTypes = [NSSetsetWithObject:@"text/plain"];
   
    [manager
POST:url parameters:parameter success:^(AFHTTPRequestOperation * _Nonnull operation, id  _Nonnull responseObject) {
       
NSLog(@"成功");
    }
failure:^(AFHTTPRequestOperation * _Nullable operation, NSError * _Nonnull error) {
       
NSLog(@"失败: %@", error);
    }];
    

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值