iOS program to use multiple UITableView in a single UIViewController

后端 未结 5 585
庸人自扰
庸人自扰 2021-01-15 09:55

I am trying to implement 3 tables in a single segue in a storyboard. When one table is selected it will unhidden a view with another table and likewise one more. The followi

5条回答
  •  隐瞒了意图╮
    2021-01-15 10:17

    You can keep track of the different tableviews using class properties e.g.:

    @property (nonatomic, strong) UITableView *tableView1;
    @property (nonatomic, strong) UITableView *tableView2;
    @property (nonatomic, strong) UITableView *tableView3;
    

    In the delegate methods you can check for the correct tableView e.g.:

    if (tableView == self.tableView1) {
        // add code for tableView1
    } else if (tableView == self.tableView2) {
        // add code for tableView2
    } else if (tableView == self.tableView3) {
        // add code for tableView3
    } else {
        // unknown tableView
    }
    

提交回复
热议问题