使用一个tableView进行多个tableView数据表切换

使用一个tableView进行多个tableView数据切换

很简单,就是在reload tableView的时候添加动画效果就好了。

- (void)changeTableView {
    if (self.segmentController.selectedSegmentIndex == 0) {
        [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationRight];
    }else{
        [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationLeft];
    }
}

至于tableView的几个代理方法,就很简单啦,哪个数据表就用哪个表的数据就好了。

你可能感兴趣的:(使用一个tableView进行多个tableView数据表切换)