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.
How can i remove the previous page?
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