steventnorris
steventnorris

Reputation: 5896

No Animation UITableViewCell selection

I have a UITableView that when the cells are touched, another view slides over top of the cell. However, the selected cell does the selection animation, which causes interference with sliding view. I'd like to stop the cell from the background-changing selection animation from happening. So no background change on select. Is there a way to do this simply?

Upvotes: 1

Views: 851

Answers (1)

sha
sha

Reputation: 17860

Change cell selectionStyle to UITableViewCellSelectionStyleNone

Upvotes: 4

Related Questions