I have a UIButton that has a view arrow of a blue image set as
UIImage *arrowImage = [UIImage imageNamed:@"bluearrow.png"];
[self.prevbutton setBackgroundImage:arrowImage forState:UIControlStateNormal];
Now I have another yellow.png image that I want to super superimpose on top of that button image and blink constantly. How can i do this?
source
share