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

实现cell显示一个删除button

时间:2017-04-16 16:06:19      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:button   uitable   msu   ima   数据   objects   comm   void   sar   

假设想实现滑动cell时,cell右边就能显示一个删除button,则要实现tableview 下边方法:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath 


让一个cell实现滑动出现删除button


我们删除cell。一般调用方法

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationTop];


下面边的样例做參考:


- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

if (editingStyle == UITableViewCellEditingStyleDelete) {


[self.myArray removeObjectAtIndex:[indexPath row]];//删除数据源相应的内容


[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationTop];//删除列表的显示

}

}

实现cell显示一个删除button

标签:button   uitable   msu   ima   数据   objects   comm   void   sar   

原文地址:http://www.cnblogs.com/liguangsunls/p/6719004.html

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