项目中需要展现用户的家庭成员,第一行是用户自己,下面分别是用户的家庭成员。成员可被编辑、删除,但用户本身只能编辑资料,不可被删除。可以利用UITableViewDelegate中的
-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath方法对不同的cell自定义左滑动作。
-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewRowAction *deleteRoWAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {//title可自已定义
[self deleteMember:indexPath];
}];//此处是iOS8.0以后苹果最新推出的api,UITableViewRowAction,Style是划出的标签颜色等状态的定义,这里也可自行定义
UITableViewRowAction *editRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"编辑" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
[self deleteMember:(NSIndexPath *)indexPath];
}];
UITableViewRowAction *editRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"编辑" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
[self editMember:(NSIndexPath *)indexPath];
}
if (indexPath.row>0) {
return @[deleteRoWAction, editRowAction];//最后返回这俩个RowAction 的数组
}
else{
return @[editAction];//row=0时只返回编辑按钮
}
}