如何使用objective-C突出显示表视图中的多个行

时间:2015-08-31 12:00:26

标签: ios objective-c uitableview

如果我触摸第一行,它将突出显示。如果我触摸第二行,则第一行突出显示不存在,第二行在iOS的表格视图中突出显示。 我想突出显示(多个)两行

  

这是我的代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

UIView *selectionColor = [[UIView alloc] init];
selectionColor.backgroundColor = [UIColor grayColor];
cell.selectedBackgroundView = selectionColor;

}

1 个答案:

答案 0 :(得分:3)

使用

self.tableView.allowsMultipleSelection = YES;
UITableView的

属性。