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

UITableView侧滑效果(1)

时间:2017-06-29 19:10:28      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:set   pre   confirm   table   ble   eva   xpath   edit   suse   

//侧滑
-(NSArray )tableView:(UITableView )tableView editActionsForRowAtIndexPath:(NSIndexPath )indexPath{
NSString
indexPathRow = [NSString stringWithFormat:@"%ld",(long)indexPath.row];
[[NSUserDefaults standardUserDefaults]setObject:indexPathRow forKey:@"indexPathRow"];
//确认订单
UITableViewRowAction confirmOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@" " handler:^(UITableViewRowAction action, NSIndexPath *indexPath) {

         //自己需要实现的其他功能
}];
//取消订单
UITableViewRowAction *cancelOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"      " handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {


         //自己需要实现的其他功能
}];
//评价
UITableViewRowAction *evaluateOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"      " handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {

    //自己需要实现的其他功能
}];
//查看订单
UITableViewRowAction *seeOrder = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"      " handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
 //自己需要实现的其他功能
}];
return @[seeOrder,evaluateOrder,cancelOrder,confirmOrder];

}技术分享

UITableView侧滑效果(1)

标签:set   pre   confirm   table   ble   eva   xpath   edit   suse   

原文地址:http://www.cnblogs.com/linfeifei/p/7095618.html

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