Hey guys, I am attempting to create a ripple like effect on an imageView when it is touched down on, however I do not understand how to implement OpenGL for windows and porting it to iOS. I have attempted to use http://www.codeproject.com/KB/openGL/dsaqua.aspx as well as cocos2d however I find the latter completely and utterly confusing. Would anyone be willing to give some suggestions or can point me in the right direction?

Many thanks!

link|improve this question

Hey!! Muller how you have done Ripple Effect. Could you please help me? I have tried below answer given by Jhaliya but not able to get ripple. – Varun Mehta May 9 at 10:59
feedback

2 Answers

up vote 3 down vote accepted

Use below for ripple effect in iPhone

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:(UIViewAnimationTransition) 110 forView:view cache:NO];
[UIView commitAnimations];

Taken form iOS Ripple effect

For more effects you can check this link :

http://www.iphonedevwiki.net/index.php?title=UIViewAnimationState

link|improve this answer
I wouldn't rely on this, there is a reason why this isn't a real enum but just an undocumented number! – JustSid May 12 '11 at 5:46
@JustSid : Agree with you because It's not in documentation currently so by the time it's available there is no harm to use the numberic value . – Jhaliya May 12 '11 at 5:51
is there a way to have it do this effect in only in a certain area of the image? I am having it done with a tap gesture, however it applies it to the whole image. – Muller May 12 '11 at 6:29
Sorry but i m not able to get any animation effect using this code.. I have just replaced view with self.myImageView. Anymore changes required??? – mrunal Mar 5 at 11:49
feedback

If you want a ripple effect on a view you can use it.

    CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:2.0f];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
[animation setType:@"rippleEffect" ];
[myView.layer addAnimation:animation forKey:NULL];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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