码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:style   blog   http   color   2014   cti   

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

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

标签:style   blog   http   color   2014   cti   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!