Advertisement
Guest User

Untitled

a guest
May 29th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. - (void)handleGesture {
  2. NSArray *cells = [self.myTable visibleCells];
  3. for (int i = 0; i < [cells count]; i++) {
  4. ViewerCell *cell = [cells objectAtIndex:i];
  5. [UIView beginAnimations:@"" context:nil];
  6. [UIView setAnimationDuration:0.1];
  7. [UIView setAnimationDelay:0.025*i];
  8. [cell setBackgroundColor:[UIColor greenColor]];
  9. [UIView commitAnimations];
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement