ios7 UITableViewCell selectionStyle won't go back to blue
|
Xcode 5.0, iOS 7 and updating an existing app. From what I've read they changed the default I've tried setting the value in IB and in code, but no luck. Any ideas on what I need to do to get the blue selection style back? |
|||
| add comment |
|
There is only one selectionStyle in iOS7, to change you need to do this manually like below:
|
|||||||||||||||||||||||||||
|
|
Probably it could help you. I have my custom cell and to make it selected with needed color I have overwrite setHighlighted and setSelected now it's look like that
|
|||
| add comment |





cell.selectionStyle = UITableViewCellSelectionStyleBlue;? – for i in range awesomeSep 13 at 20:50