iphone - Change Style/State of UIButton Info Dark -
i have uibutton (info dark) opens small box on click. possible change style/state button buttons appears highlighted or long box open? or have use own background images button?
try this:
[yourbutton setbackgroundimage:[uiimage imagenamed:@"highlighted_image.png"] forstate:uicontrolstatehighlighted]; [yourbutton setbackgroundimage:[uiimage imagenamed:@"highlighted_image.png"] forstate:uicontrolstateselected];
and when close box can put picture on button normal (not highlighted) this:
[yourbutton setbackgroundimage:[uiimage imagenamed:@"oldpicture_nothighlighted.png"] forstate:uicontrolstatenormal];
Comments
Post a Comment