如何在同一个ViewController中创建多个tableView

时间:2014-04-13 18:12:53

标签: ios objective-c uitableview

如何在同一个ViewController中加载2个(或更多)tableView?我现在拥有的是:

- (void)reload {
    _products = nil;
    _products2 = nil;
    [self.tableView reloadData];
    [[FlamencompasIAPHelper sharedInstance] requestProductsWithCompletionHandler:^(BOOL success, NSArray *products) {
        if (success) {
            _products = products;
            [self.tableView reloadData];
        }
        //[self.refreshControl endRefreshing];
    }];
    [self.tableView2 reloadData];
    [[FlamencompasIAPHelper sharedInstance2] requestProductsWithCompletionHandler:^(BOOL success, NSArray *products2) {
        if (success) {
            _products2 = products2;
            [self.tableView2 reloadData];
        }
        [self.refreshControl endRefreshing];
    }];
}

此代码仅加载第一个tableView。我希望你知道我的解决方案。

0 个答案:

没有答案