Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created December 13, 2012 03:17
Show Gist options
  • Save yuanmai/4273744 to your computer and use it in GitHub Desktop.
Save yuanmai/4273744 to your computer and use it in GitHub Desktop.
CGRect frm_up = imageView.frame;
frm_up.origin.y -= 10;
[UIView animateWithDuration:0.5
delay:0.0
options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeats
animations:^{
imageView.frame = frm_up;
}
completion:NULL
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment