推荐一个UIAlertView的第三方扩展,可以大大简化UIAlertView的使用

推荐一个UIAlertView的第三方扩展,可以大大简化UIAlertView的使用_第1张图片
有这样一个需求:为了避免用户的误操作,我想删除时,先弹出一个对话框,让用户确定是否继续删除操作;但是,我发现虽然可以通过代理在点击按钮时进行不同的操作,但是无法向对话框的代理类中传递正在操作哪个单元格的数据,也就无法继续进行删除操作! 此需求怎解?(我觉得这应该是一个很基本很重要的需求,但是翻遍了API,没有相关方法!)

度娘指引我找到了答案
http://blog.csdn.net/startexcel/article/details/7669920
https://github.com/jivadevoe/UIAlertView-Blocks
好厉害的类目 功能已经实现,只需要简单调整几行代码
把删除代码相关的代码放到一个block即可.

  • (void)tableView:(UITableView )tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath )indexPath
    {
    // 删除
    if (UITableViewCellEditingStyleDelete == editingStyle) {
    // 获取要操作的数据.
    CFPerson * person = [self personAtIndexPath: indexPath];
    
    // 是不是用户的误操作?
    RIButtonItem * cancelItem = [RIButtonItem itemWithLabel:@"取消"
                                    action:^{/* 不做任何操作 */}];
    RIButtonItem * deleteItem = [RIButtonItem itemWithLabel: @"确定"
                                                     action:^{            //删除联系人
         // 先获取此分区所有成员
         NSArray * personsArray = [self personsInSection: indexPath.section];
    
         // 删除数据
         [self.navigationController removePerson: person];
    
         // 根据分区成员数量来决定是删除行,还是直接删除分区
         if (1 == personsArray.count) { // 可以直接删除分区了
             [tableView deleteSections:[NSIndexSet indexSetWithIndex: indexPath.section] withRowAnimation: UITableViewRowAnimationAutomatic];
         }else{ // 只删除行
             [tableView deleteRowsAtIndexPaths: @[indexPath] withRowAnimation: UITableViewRowAnimationAutomatic];
         }}];
    UIActionSheet * actionSheet = [[UIActionSheet alloc] initWithTitle:[NSString    stringWithFormat:@"确定删除联系人 %@ ?", person.name]
                                                      cancelButtonItem:cancelItem
                                                 destructiveButtonItem:deleteItem otherButtonItems: nil];
    [actionSheet showInView: self.view];
    
    }
    }

你可能感兴趣的:(推荐一个UIAlertView的第三方扩展,可以大大简化UIAlertView的使用)