我有以下代码,可以很好地工作,但我需要对它进行更多的控制,尤其需要开始使用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“。
发布于 2012-02-27 19:00:15
只需使用单例创建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]);
}];https://stackoverflow.com/questions/9411364
复制相似问题