表格将在按下右键的单元格下添加一个选项单元格。然后表自动滚动并显示整个标题,但搜索栏的不可见部分将由父视图覆盖。如果稍微滚动表格,它会立即显示。有办法解决吗?提前谢谢!
添加1:
[currentTableView beginUpdates];
NSMutableArray *addCellIndexPaths = [[NSMutableArray alloc] initWithObjects:optionCellIndexPath, nil];
[currentTableView insertRowsAtIndexPaths:addCellIndexPaths withRowAnimation:UITableViewRowAnimationTop];
[currentTableView endUpdates];