I've cleaned and cleaned and cleaned. I've checked to see if the files are there. They're listed in the resources. Not a whisper of a complain from XCode. But, try as I might, the button images won't load. Just blank buttons.
What gives?
Code:
UIImage *buttonImagePressedFour = [UIImage imageNamed:@"greenbuttondown.png"];
UIImage *stretchableButtonImagePressedFour = [buttonImagePressedFour stretchableImageWithLeftCapWidth:22 topCapHeight:0];
UIImage *buttonImagePressedFive = [UIImage imageNamed:@"redbuttondown.png"];
UIImage *stretchableButtonImagePressedFive = [buttonImagePressedFive stretchableImageWithLeftCapWidth:22 topCapHeight:0];
[timerButton setBackgroundImage:stretchableButtonImagePressedFour forState:UIControlStateHighlighted];
[timerStopButton setBackgroundImage:stretchableButtonImagePressedFive forState:UIControlStateHighlighted]
What gives?