如何在iOS8.0中pipe理UITableViewRowAction的等宽(更多,删除等操作)

我使用下面的代码在ios8.0 xcode6中滑动UITableViewCell。我的代码工作正常,但我需要设置UITableViewRowActions(更多,删除等)的宽度相等。如何可能?请帮助我..

-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewRowAction *moreAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@“More” handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){ }]; UITableViewRowAction *flagAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@“Flag” handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){ }]; UITableViewRowAction *deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Delete" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){ // [self.objects removeObjectAtIndex:indexPath.row]; }]; return @[deleteAction,flagAction,moreAction]; } 

我知道这是完美的方式,但我添加了标题的空string

 [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@" " 

然后我用图像

 block.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"block"]]; 

在这里输入图像说明