我知道 UITableView 可重用的页眉和页脚视图
但就我而言,我有 UITableView 单元格,我还需要将其放置在节标题和普通行中
如果我使用
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
MyCell * cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];
// ...
return cell;
}
重用效果如何?(消息是否可以重用,甚至比通过),或者这是否会禁用单元重用