Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. -(IBAction)UserTapButtonsOption:(UIButton*)sender
  2. {
  3.  
  4. UIButton *btn=(UIButton*)sender;
  5.  
  6. btn.selected=!btn.selected;
  7.  
  8. if(btn.selected)
  9. {
  10. btn.backgroundColor = [UIColor yellowColor];
  11.  
  12. }
  13. else {
  14. btn.backgroundColor = [UIColor redColor];
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement