首页 > 其他 > 详细

实现滑动出现删除按钮的代码

时间:2014-07-01 13:18:30      阅读:408      评论:0      收藏:0      [点我收藏+]

bubuko.com,布布扣

// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
//    if (indexPath.section == 0) {
//        return NO;
//        [self isViewLoaded];
//    }
    return YES;
}

// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView beginUpdates];
    [tableView  deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    [tableView  endUpdates];
}

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleDelete;
}

参考

http://stackoverflow.com/questions/1168593/how-to-delete-a-row-of-a-table-in-iphone

实现滑动出现删除按钮的代码,布布扣,bubuko.com

实现滑动出现删除按钮的代码

原文:http://www.cnblogs.com/guozai9527/p/3817170.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!