我正在使用以下代码在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];

 }

最佳答案

我知道这离完美还很遥远,但我为标题添加了空字符串

[UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"       "

然后我用了图像
block.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"block"]];

ios - 如何在iOS8.0中管理UITableViewRowAction的相等宽度?(更多,删除等操作)-LMLPHP

关于ios - 如何在iOS8.0中管理UITableViewRowAction的相等宽度?(更多,删除等操作),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26361834/

10-11 07:53