我正在使用下一个代码添加特定于我最后一个单元格的内容。我不明白为什么当我滚动时,我的UITableView
_buttonsView 不断出现在除最后一个单元格之外的其他单元格中。我想到了一个快速的解决方案,它是将特定视图添加到一个部分,但目前的情况让我感到困惑,我很想知道如何解决它。
NSInteger rowsAmount = [tableView numberOfRowsInSection:[indexPath section]];
cell = [tableView dequeueReusableCellWithIdentifier:@"myCombinationCell"];
if (cell == nil) {
cell = [[MyCombinationsCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"myCombinationCell"];
}
if ([indexPath row] == rowsAmount - 1)
{
_buttonsView.frame = CGRectMake(0, 0, 317, 101);
[cell addSubview:_buttonsView]; // _buttonsView is a few buttons inside a view
}