I set an images for button\'s states Normal,Highlighted and Selected, but when the button in selected state and I press/highlight it I didn\'t see my highlighted image but j
I had problem setting imageView.highlighted = NO; (setting YES worked properly and the image changed to the highlighted one).
imageView.highlighted = NO;
The solution was calling [imageView setHighlighted:NO];
[imageView setHighlighted:NO];
Everything worked properly.