标签:style blog http color 2014 io
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;//3
}
或者·
self.tableview.allowsMultipleSelectionDuringEditing = YES;
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}
UITableViewCell的多选操作,布布扣,bubuko.com
标签:style blog http color 2014 io
原文地址:http://blog.csdn.net/panyong4627/article/details/37902207