Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Animation in viewDidAppear
  2. - (void)viewDidAppear:(BOOL)animated
  3. {
  4.     [super viewDidAppear:animated];
  5.     CGRect folderFrame = self.folderImage.frame;
  6.  
  7.     folderFrame.origin.y += 250;
  8.  
  9.     [UIView animateWithDuration:250 animations:^{
  10.         self.folderImage.frame = folderFrame;
  11.     }];
  12. }