tableview中自定义自定义左滑显示编辑按钮

2017-09-23  本文已影响0人  H_A_N
// 自定义左滑显示编辑按钮

-(NSArray<UITableViewRowAction*>*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath

{

    //自定义左滑显示编辑按钮

    UITableViewRowAction *rowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault

                                                                         title:@"跟进" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

                                                                             NSLog(@"跟进");

                                                                             

                                                                         }];

    

    UITableViewRowAction *rowActionSec = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault

                                                                            title:@"快速备忘"    handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

                                                                                NSLog(@"快速备忘");

                                                                                

                                                                            }];

    rowActionSec.backgroundColor = [UIColor colorWithHexString:@"f38202"];

    rowAction.backgroundColor = [UIColor colorWithHexString:@"d9d9d9"];

    

    NSArray *arr = @[rowAction,rowActionSec];

    return arr;

}
上一篇下一篇

猜你喜欢

热点阅读