我正在尝试从委托(delegate)方法之外的 UITableview 中删除一行。当我单击表格单元格内的按钮并尝试删除该方法内的行时,我正在调用一个方法。
这是我正在使用的功能
UIButton *btn = (UIButton*)sender;
int tag = btn.tag;
UITableViewCell *buttonCell = (UITableViewCell*)[[btn superview] superview];
NSIndexPath *indexPath = [self.msgTbl indexPathForCell:buttonCell];
[deleg.rmessages removeObjectAtIndex:buttonRow];
[self.msgTbl deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationTop];NSInteger buttonRow = indexPath.row;
[self.msgTbl reloadData];
使用这一行或两行会被删除,但之后它会崩溃并给出异常
Number of rows before and after deletion must be same
如何在 ios 中执行此操作?
谢谢
Best Answer-推荐答案 strong>
您的问题是用于填充表格的数据与删除单元格后的表格不一致。确保您的 dataSource 方法在执行此操作后提供正确的数据(例如,如果它是用于填充表的对象数组,则您也必须从数组中删除该对象)
关于iphone - 从 TableView 委托(delegate)外的 UITableView 中删除行,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/7784582/
|