ios – 在UITableview部分获取最后一个单元格

前端之家收集整理的这篇文章主要介绍了ios – 在UITableview部分获取最后一个单元格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在UITableView中有一个有多行的部分.我希望获得该部分的最后一行或最后一个单元格,以在其上添加披露指标.

我想使用的一种方式是:

NSIndexPath *lastCellIndexPath = [NSIndexPath indexPathForItem:[self.tableView numberOfRowsInSection:2]-1 inSection:2];

有什么其他最好的方式来获取单元格上的单元格或索引路径?

解决方法

NSInteger totalRow = [tableView numberOfRowsInSection:indexPath.section];//first get total rows in that section by current indexPath.
    if(indexPath.row == totalRow -1){
         //this is the last row in section.
    }

希望它有帮助.

我在tableView中这样做:willDisplayCell:forRowAtIndexPath:method

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
原文链接:https://www.f2er.com/iOS/336963.html

猜你在找的iOS相关文章