Hi,
I want to use image buttons in my iPhone application. Could you please let me know if there is any article I can read on this.
Thanks.
Hi,
I want to use image buttons in my iPhone application. Could you please let me know if there is any article I can read on this.
Thanks.
Programatically, you can do something like this... http://www.iphonedevsdk.com/forum/iphone-sdk-development/1891-changing-button-image-code.html
So the suggestion from http://www.iphonedevsdk.com/forum/iphone-sdk-development/1891-changing-button-image-code.html is:
UIButton *btn = [[UIButton alloc] init];
UIImage *img = [UIImage imageNamed:@"image.png"];
[btn setImage:img forState:UIControlStateNormal]
[img release];