views:

45

answers:

1

Duplicate:

can i use highlighted the table view cell without default blue color in objective c?

How can I change the default blue color when selecting the row of UITable?

+2  A: 

UITableViewCellSelectionStyle is built in to Cocoa Touch and will give you a few choices. For more customization, you'll need to change your cell manually:

How do I set UITableViewCellSelectionStyle property to some custom color?

pix0r