I am having UIButtons that uses images .
Now i want to be able to set another UIImage above that button when it hit, and remove it when you hit it again .
Some kind of a check mark for a list .
EDIT:
My images on buttons are images from phone memory. i cant just change the image to another, because the images was loaded from memory and its not external asset. so i need to put some fixed image above all buttons that are pushed .
- should i add it as another
UIButtonover the previous ? - should i put it as a
UIImageabove it-and theUIButtonwill still get touches ?
whats the best way ? Thnank.
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(column*100+10, row*100+10, 92, 92); // distnace related to scroller(not view)
[button setImage:thumb forState:UIControlStateNormal];
[button addTarget:self
action:@selector(buttonClicked:)
forControlEvents:UIControlEventTouchUpInside];