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

tableView滑动删除

时间:2014-12-08 21:17:25      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:style   io   sp   for   on   div   log   bs   代码   

//1.设置可以编辑
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{
    return YES;
}
 
 
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return  UITableViewCellEditingStyleDelete;  //返回此值时,Cell会做出响应显示Delete
}
 
//2.删除按钮点击
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        QDLog(@"123");
    }
}
 
//设置了这行代码会显示汉字”删除"

-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath

{

    return @"删除";

}

tableView滑动删除

标签:style   io   sp   for   on   div   log   bs   代码   

原文地址:http://www.cnblogs.com/BinZone/p/4151904.html

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