AFNetworking (AFJSONRequestOperation) convert to AFHTTPClien



我有以下代码运行良好,但我需要对其进行更多的控制,尤其需要在0.9中开始使用可达性代码。

NSString *urlString = [NSString stringWithFormat:@"http://example.com/API/api.php"];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    _self.mainDictionary = [JSON valueForKeyPath:@"elements"];
    [_self parseLiveData];
} failure:^(NSURLRequest *request , NSURLResponse *response , NSError *error , id JSON){
    //NSLog(@"Failed: %@",[error localizedDescription]);        
}];
if (operation !=nil && ([self.sharedQueue operationCount] == 0)) {
    [self.sharedQueue  addOperation:operation];
}

我正在努力解决如何将相同的代码转换为使用AFHTTPClient,以便利用"setReachabilityStatusChangeBlock"。

只需创建一个带有单例的AFHTTPClient子类

+ (id)sharedHTTPClient
{
    static dispatch_once_t pred = 0;
    __strong static id __httpClient = nil;
    dispatch_once(&pred, ^{
        __httpClient = [[self alloc] initWithBaseURL:[NSURL URLWithString:@"http://example.com/API"]];
        [__httpClient setParameterEncoding:AFJSONParameterEncoding];
        [__httpClient registerHTTPOperationClass:[AFJSONRequestOperation class]];
    });
    return __httpClient;
}

然后调用getPath方法

[[YourHTTPClient sharedHTTPClient]
   getPath:@"api.php"
   parameters:nil
      success:^(AFHTTPRequestOperation *operation, id JSON){
              _self.mainDictionary = [JSON valueForKeyPath:@"elements"];
              [_self parseLiveData];
      }
      failure:^(AFHTTPRequestOperation *operation, NSError *error) {
          //NSLog(@"Failed: %@",[error localizedDescription]); 
      }];

最新更新