只是想知道为什么我们不能通过以下方式将数据源设置为 UITableview,而不是在一种方法中返回数据计数并在不同的方法中返回单元格的数据。
为什么我们不做类似下面的事情?
UITableView *tableView = [UITableView alloc] init];
tableView.datasource = [NSArray arrayWithObjects:@"row1", @"row2", nil];
tableView.cellIdentifier = @"Identifier";
tableView.cell = [UITableViewCell alloc] init];
//delegate methods implemented as properties,
tableView.rowHeight = 50.0;
tableView.headerHeight = 100.0
tableView.headerView = [UIView alloc] init];
[self.view addSubView:tableView];
我们可以正确地做到这一点,可能不是 100% 正确,我们可以考虑添加更多属性以使 TableView 以与现在相同的方式工作。
Whey Apple 以现在的工作方式设计了 TableView。如果有人能用现有设计解释这种设计的优缺点,那将很有帮助。