Created
December 13, 2012 03:17
-
-
Save yuanmai/4273744 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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