how can hide uibutton
on tap of button, or other event?
create outlet button hide , connect in xib:
iboutlet uibutton *mybutton;
now create ibaction
other button , connect in xib:
-(ibaction)hidebutton { mybutton.hidden = yes; }
so when click on second button, hide mybutton
.
Comments
Post a Comment