常用:
1.注冊(cè)cell
viewDidLoad中液荸,[self.tableView [self.tableView registerNib:[UINib nibWithNibName:@"xxx" bundle:nil] forCellReuseIdentifier:ID];
2.從緩存池中取出
XXXCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
配套使用
常用:
1.注冊(cè)cell
viewDidLoad中液荸,[self.tableView [self.tableView registerNib:[UINib nibWithNibName:@"xxx" bundle:nil] forCellReuseIdentifier:ID];
2.從緩存池中取出
XXXCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
配套使用