- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{// 如果是你需要隐藏的那一行,返回高度为0if(indexPath.row == YouWantToHideRow)return0;return44;}// 然后再你需要隐藏cell的时候调用[self.tableView beginUpdates];[self.tableView endUpdates];
- (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{// 如果是你需要隐藏的那一行,返回高度为0if(indexPath.row == YouWantToHideRow)return0;return44;}// 然后再你需要隐藏cell的时候调用[self.tableView beginUpdates];[self.tableView endUpdates];
本文标题:(IOS)隐藏某行cell
本文链接:https://www.haomeiwen.com/subject/hmgfvftx.html
网友评论