Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an UIImageView set as the background to a custom cell (prototype cell) .How can I change the image in the image view , when the cell is selected?

share|improve this question
You have 0% accept rate please fix it... – Jacky Boy May 11 '12 at 13:33

2 Answers

up vote 4 down vote accepted

If you want to change the image of the imageview on cell selection then you will need to do it in delegate method of tableview here:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{}

If you have a custom cell and you have set its background as an image view then you must also create its property in custom cell's class and change the image of the image view through that property in the mentioned delegate.

share|improve this answer

Did you try the property highlightedImage ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.