First of all i am a n00b. After 3 days of trying and research i decided to get some external help.

What i did and my Project:

i make a book for children. Every page is a custom ViewController. On every Page i have a button for next and previous Page. When i push the next-Page-Button i call following code:

view2 = [ViewController2 alloc];
UIView *aktuell = self.view;
[self.view addSubview:view2.view];

CATransition *animationT = [CATransition animation];
[animationT setDuration:0.5];
[animationT setType:kCATransitionMoveIn];
[animationT setSubtype:kCATransitionFromRight];
[animationT setTimingFunction:[CAMediaTimingFunction      
functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
[[aktuell layer] addAnimation:animationT forKey:@"SwitchToView1"];

Now i am in ViewController1 (on Page 1) and make a CATransition to ViewController2 (Page 2). Because the Page isn´t Screensize (has a transparent frame) i still can see a part of the previous Page.

  1. How can i remove the previous page?

  2. If i flip through the App pages after some Pages my App gets slower because i can´t get rid of the Pages in the background. i tried a lot of things but nothing works, maybe anybody could give me some advice.

Any ideas? slowly but surely i am losing my motivation. It would be really cool if anyone could help me! Thanks in advance Planky

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Here check this out: http://www.iphonedevsdk.com/forum/iphone-sdk-development/12807-best-form-release-view-controller.html Hope this helps.

link|improve this answer
Thanks a lot for your time MacN00b!! – Planky Jul 17 '11 at 21:25
feedback

Your Answer

 
or
required, but never shown

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