Skip to content

Instantly share code, notes, and snippets.

@arturlector
Created February 4, 2016 22:14
Show Gist options
  • Save arturlector/13968d129de14662f4b8 to your computer and use it in GitHub Desktop.
Save arturlector/13968d129de14662f4b8 to your computer and use it in GitHub Desktop.
Selection background

При нажатии на ячейку - не подсвечиваем ее (отображаем прозрачный фон)

//Selection Background у Cell
UIImage *selectionBackground = [UIImage imageWithUIColor:[UIColor clearColor]];
UIImageView *bgview=[[UIImageView alloc] initWithImage:selectionBackground];
cell.selectedBackgroundView=bgview;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment