Paper folding animation in iPhone?

Try this: UIView transitionWithView:urImage duration:1.5 options: UIViewAnimationOptionTransitionCurlUp animations^{ urImage. Frame = requiredFrame; } completion:^(BOOL finished){ //urImage removeFromSuperview; // do something after animation has completed } .

Refer This code: UIView beginAnimations:nil context:nil; UIView setAnimationCurve:UIViewAnimationOptionTransitionCurlUp; UIView setAnimationDuration:2; UIView commitAnimations; UIView beginAnimations:nil context:nil; UIView setAnimationCurve:UIViewAnimationOptionTransitionCurlDown; UIView setAnimationDuration:2; UIView commitAnimations.

I am working on a kids application where the user should be able to fold a paper image like a physical paper and be able to cut it to which ever shape he likes. How to get paper folding animation for iPhone/iPad? Can any one please suggest me a way to achieve this task.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions