AFNetworking故障阻止

时间:2014-03-05 20:14:57

标签: ios afnetworking-2

我正在使用afnetworking 2.0来显示youtube视频。 当我有连接错误时,我打开一个警报视图,如果我点击“确定”,我想停止请求。

警报视图显示正确但当我点击“确定”时,请求未停止,我看到活动指示器。

如何停止请求?

这是下面的代码:

-(void)loadData {

NSString *urlAsString = @"https://gdata.youtube.com/feeds/api/videos?q=wankel&v=2&max-results=50&alt=jsonc";

UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] init];
activityIndicator.color = [UIColor blackColor];
activityIndicator.backgroundColor = [UIColor blackColor];
[activityIndicator startAnimating];
[self.view addSubview:activityIndicator];
activityIndicator.center = CGPointMake(self.view.bounds.size.width / 2, self.view.bounds.size.height / 2 );

NSURL *url = [NSURL URLWithString:urlAsString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
operation.responseSerializer = [AFJSONResponseSerializer serializer];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

    self.moviesArray = [responseObject valueForKeyPath:@"data.items"];
    NSLog(@"%@", moviesArray);

    self.thumbnailsArray = [responseObject valueForKeyPath:@"data.items.thumbnail"];

    self.moviesDetailArray = [responseObject valueForKeyPath:@"data.items"];

    [activityIndicator setHidden:YES];
    [activityIndicator stopAnimating];


    [self.collectionView reloadData];

} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    NSLog(@"Error: %@", error);
    UIAlertView *alertView =[[UIAlertView alloc] initWithTitle:@"Error" message:[NSString stringWithFormat:@"%@", error.localizedDescription] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Try again", nil];
    [activityIndicator setHidden:YES];
    [activityIndicator stopAnimating];      
    [alertView show];           
    }];

[operation start];
}

2 个答案:

答案 0 :(得分:1)

您是否尝试将操作添加到 AFHTTPRequestOperationManager ? 经理有一个operationQueue属性。您可以从那里取消操作。

当操作失败时,从共享管理器停止操作。

AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
[manager.operationQueue cancelAllOperations];

编辑: 如果您正在寻找特定操作,则可以遍历队列中的操作:

for (NSOperation *operation in manager.operationQueue.operations) {
    // check if this is the right operation, and cancel it.
}

答案 1 :(得分:0)

尝试放

[operation cancel];

在你的失败障碍中