码迷,mamicode.com
首页 > 移动开发 > 详细

IOS_修改TableView的删除按钮的文本

时间:2014-08-22 10:36:05      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   blog   os   io   for   div   log   sp   

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleDelete;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        NSLog(@"jiujsaifsdfasdffsda");
    }
}
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
    return @"编辑";
}

 

 

IOS_修改TableView的删除按钮的文本,布布扣,bubuko.com

IOS_修改TableView的删除按钮的文本

标签:style   blog   os   io   for   div   log   sp   

原文地址:http://www.cnblogs.com/lxllanou/p/3928600.html

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