我有一个iPhone UITableView
显示自定义UITableViewCell
s,右侧显示公开按钮图标.
当我滑动单元格时,显示按钮会自动被红色的"删除"按钮替换.如果我按下"删除"按钮,行将从表中删除,但之后会出现奇怪的情况.
当我滚动表并重新使用已删除的单元格时,数据已正确加载但缺少公开按钮.
我试图重置prepareForReuse
方法中的按钮但没有成功.
我不明白我缺少什么,因为行为看起来与Mail应用程序相同,所以它应该由iPhone OS本机支持.
BTW:UITableViewCell
从NIB加载.
似乎我已经通过添加来解决了这个问题
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
这行代码:
[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
我认为这条线对于正常细胞是无用的,但在删除后重复使用的细胞恢复正确的细胞行为...
无论如何要删除我用过的行
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
这(我猜)标准线:
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
谢谢Stefano