ios 1ページに複数のリクエストがあり、すべてのリクエストが戻ってきてからページをロードします.

3644 ワード

1ページにいくつかのネットワーク要求がある場合がありますが、ネットワーク要求は非同期であり、1つの要求が成功する可能性があります。もう1つは、UIをリフレッシュすると、ユーザー体験が悪くなり、ボタンのクリックが無効になる可能性があります。以下の方法を示します。


同時キューの作成、すべてのリクエストの終了、UIの更新
_queue = dispatch_queue_create("homeRequest", DISPATCH_QUEUE_CONCURRENT);
    dispatch_group_t group = dispatch_group_create();

コンカレントキューの特徴は、先進的な先行方式で、コンカレントスケジューリングキュー内のタスク実行現在のスケジューリングのタスクが同期実行されている場合、タスク実行が完了した後、後続のタスクをスケジューリングします.現在のスケジューリングのタスクが非同期実行である場合、下位スレッドプールに使用可能なスレッドリソースがあり、新しいスレッドが後続のタスクの実行をスケジューリングします.
@interface HomeViewController : BaseViewController
{
     dispatch_queue_t _queue;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    [self requestUserData:YES pulling:NO];
}

- (void)requestUserData:(BOOL)refresh pulling:(BOOL)pulling {
    if (_queue) {
        return;
    }
    
    BOOL showLoading = NO; //  
    
    if (!pulling) {
        if (! 1) {
            showLoading = YES;
        }
        
        else if (! 2) {
            showLoading = YES;
        }
        else if (! 3) {
            showLoading = YES;
        }
    }
    
    if (showLoading) {
        [self showHUDTo:self.view animated:YES];
    }
    
    __weak typeof(self) weakSelf = self;
    _queue = dispatch_queue_create("homeRequest", DISPATCH_QUEUE_CONCURRENT);
    dispatch_group_t group = dispatch_group_create();
    
    if ([JFUserInfoModel isLogin]) {
        dispatch_group_async(group, _queue, ^{
            [weakSelf  1]; 
        });
        
        dispatch_group_async(group, _queue, ^{
            [weakSelf  2]; 
        });
    }
    if (refresh || !_homeAdArray) {
        dispatch_group_async(group, _queue, ^{
            [weakSelf  3];
        });
    }
    
    if (refresh || !_homeFeatureBannerArray) {
        dispatch_group_async(group, _queue, ^{
            [weakSelf  4];
        });
    }
    
    if (refresh || !_homeProductBannerArray) {
        dispatch_group_async(group, _queue, ^{
            [weakSelf  5];
        });
    }
    
    if (refresh || !_homeItemArray) {
        dispatch_group_async(group, _queue, ^{
            [weakSelf  6];
        });
    }
    if (refresh) {
        //  
       // do something
    }
    dispatch_group_notify(group, dispatch_get_main_queue(), ^{
        [weakSelf reload:showLoading pulling:pulling];
    });
}
- (void)reload:(BOOL)showLoading pulling:(BOOL)pulling {
    _queue = nil;
    if (pulling) {
        [_tableView.mj_header endRefreshing];
    }
    else if (showLoading){
        [self hideHUDView:self.view animated:YES]; //  loading 
    }
    [self setupVenderView];
    [_tableView reloadData];
}

//  1
- (void) request 1 {
    __block dispatch_semaphore_t sem = dispatch_semaphore_create(0);
    Request *request = [[Request alloc] init];
    [self post:request forResponseClass:[Response class] onSuccess:^(Response *response) {
        if ([response success]) {
            _integral = ((Response *)response).data;
        }
        dispatch_semaphore_signal(sem);
    } onFailure:^(NSError *error) {
        dispatch_semaphore_signal(sem);
    }];
    dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
}

//   2
- (void) request 2 {
    __block dispatch_semaphore_t sem = dispatch_semaphore_create(0);
    [self post:request forResponseClass:[indingResponse class] onSuccess:^(Response *response) {
        if ([response success]) {
               [self setupVenderDataWithData:response];
            }
        dispatch_semaphore_signal(sem);
    } onFailure:^(NSError *error) {
        dispatch_semaphore_signal(sem);
    }];
    dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
}