I’m trying to get my view to do a nice shining animation to catch the user’s eyes. Any ideas how to implement this?
Here’s what I have so far:
[UIView beginAnimations:@"viewShine" context:self.view];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView setAnimationRepeatCount:0];
[UIView setAnimationDuration:2];
[UIView setAnimationDelegate:self];
//Do nice shining animation here
[UIView commitAnimations];
By shine I mean something like what happens to the “slide to unlock” text when you open the iPhone, or anything that’s easy to do and looks nice.
Figured it out.
Here’s my code in case you want to do something similar:
Using this image: