美文网首页
tableview侧滑出现多个按钮

tableview侧滑出现多个按钮

作者: cocoaZ | 来源:发表于2016-08-24 11:43 被阅读32次

OS8+

-(nullableNSArray *)tableView:(UITableView*)tableView editActionsForRowAtIndexPath:(NSIndexPath*)indexPath NS_AVAILABLE_IOS(8_0)__TVOS_PROHIBITED;

- (NSArray*)tableView:(UITableView*)tableView editActionsForRowAtIndexPath:(NSIndexPath*)indexPath{// 设置删除按钮UITableViewRowAction *noDeleAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"不删除"handler:^(UITableViewRowAction * _Nonnull action,NSIndexPath* _Nonnull indexPath) {//事件NSLog(@"不删除"); }];//收藏UITableViewRowAction *noLoveAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"不收藏"handler:^(UITableViewRowAction * _Nonnull action,NSIndexPath* _Nonnull indexPath) {//事件NSLog(@"不收藏"); }];//不开心UITableViewRowAction *noHappyAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"不开心"handler:^(UITableViewRowAction * _Nonnull action,NSIndexPath* _Nonnull indexPath) {//事件NSLog(@"不开心"); }]; noDeleAction.backgroundColor= [UIColorblueColor]; noLoveAction.backgroundColor= [UIColorpurpleColor];return@[noHappyAction,noLoveAction,noDeleAction]; }

|

|

|

iOS7

相关文章

网友评论

      本文标题:tableview侧滑出现多个按钮

      本文链接:https://www.haomeiwen.com/subject/vqtosttx.html