Guest User

Untitled

a guest
Jul 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. -(IBAction) changeBackgroundColor:(id)sender
  2. {
  3. for (int y = 0; y < 30000; y++)
  4. {
  5.  
  6. if(y % 2)
  7. {
  8. self.view.backgroundColor = [UIColor blueColor];
  9. colorView.backgroundColor = [UIColor redColor];
  10.  
  11. } else {
  12.  
  13. self.view.backgroundColor = [UIColor redColor];
  14. colorView.backgroundColor = [UIColor blueColor];
  15. }
  16. }
  17. }
  18.  
  19. BECAUSE YOU TOUCH YOURSELF AT NIGHT
Add Comment
Please, Sign In to add comment