我的书告诉我应该像这样使用 UITableView 单元格的重用标识符
//check for reusable cell of this type
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell"];
//if there isn't one, create it
if(!cell){
cell = [[UITableViewCell alloc] initWithStyle: UITableViewCellStyleDefault
reuseIdentifier: @"UITableViewCell"];
}
因此,据我所知,它会检查我们想要的单元格类型是否存在,如果存在,它会使用它,但如果不存在,它会创建一个具有所需标识符的单元格。
如果我们有多个单元格样式(即不同的reuseIdentifiers),我们将如何使用它为我们创建不同的可重用单元格?