Я пытаюсь получить UIImage, чтобы иметь небольшой эффект покачивания.
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(endSwipeAnimation)];
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
[UIView setAnimationRepeatCount:10];
[myImage setAlpha:1.0];
[myImage setAlpha:0.7];
[UIView setAnimationRepeatAutoreverses:NO];
[UIView commitAnimations];
есть идеи, как этого добиться?
спасибо заранее