Skip to content

Instantly share code, notes, and snippets.

@coderiding
Last active March 26, 2020 13:02
Show Gist options
  • Save coderiding/0c984c8a7b66933d75ee2fe5041c4ce6 to your computer and use it in GitHub Desktop.
Save coderiding/0c984c8a7b66933d75ee2fe5041c4ce6 to your computer and use it in GitHub Desktop.
效果图链接:https://raw.githubusercontent.com/codeRiding/github_pic_0001/master/2020-03-26 21.01.10.gif
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
UIView* bgSelectionView = [UIView new];
bgSelectionView.backgroundColor = [UIColor redColor];
cell.selectedBackgroundView = bgSelectionView;
}
https://gist.github.com/0c984c8a7b66933d75ee2fe5041c4ce6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment