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