如果我触摸第一行,它将突出显示。如果我触摸第二行,则第一行突出显示不存在,第二行在iOS的表格视图中突出显示。 我想突出显示(多个)两行。
这是我的代码
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UIView *selectionColor = [[UIView alloc] init];
selectionColor.backgroundColor = [UIColor grayColor];
cell.selectedBackgroundView = selectionColor;
}
答案 0 :(得分:3)
使用
self.tableView.allowsMultipleSelection = YES;
UITableView的属性。