Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to achieve a ripple effect in my iOS app where if the user touches a specific button the UIView ripples. I tried googling on this but the results got me even more confused. At some places I thought it was related to CAAnimation, then CAFilter etc. I could not find any decent tutorial on this, so if any one can help me, what code shall go in my following method. (It is called at the press of a button)

- (void)buttonPressed:(id)sender

I need to know how can I achieve a ripple effect on the view programmatically. Thanks in advance.

share|improve this question
I'd imagine that a ripple effect is a very complex thing to do. Well beyond the scope of a question here, unless someone can point you to a project that does it for you... – tarmes Nov 7 '12 at 16:36

closed as not a real question by 0x7fffffff, Janak Nirmal, bažmegakapa, Mark, Andy Hayden Nov 9 '12 at 0:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

For the brave and strong (those who are not afraid of getting the App rejected):

[UIView beginAnimations:@"rippleEffect" context:NULL];
[UIView setAnimationTransition:110 forView:myViewContainer cache:YES];
[UIView setAnimationPosition:CGPointMake(100.0f, 100.0f)];
[myView removeFromSuperview];
[UIView commitAnimations];

Source: www.iphonedevwiki.net

share|improve this answer
Thank you @Till – SuperDev Nov 7 '12 at 16:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.