0
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[cell.layer setBorderColor:[[UIColor colorWithRed:0.663 green:0.0 blue:0.373 alpha:1] CGColor]];
[cell.layer setBorderWidth:3.0];
上記のコードは、選択時にセル境界を強調表示しています。 私は別のセルを選択しているときにそのセルもhightlight。 2つのセルが強調表示されます。私は選択した特定のセルを強調したいと思います。 この問題に直面している方は、私に私に示唆を与えてくれます。 @ありがとうございます問題は、テーブルビューでセルの境界線を強調表示する