UISplitViewController, animating views

Posted by Romeo Robles on Stack Overflow See other posts from Stack Overflow or by Romeo Robles
Published on 2010-06-16T01:39:32Z Indexed on 2010/06/16 1:42 UTC
Read the original article Hit count: 552

Hello, I'm trying to animate my detail view controller to transition with a page curl (up/down). I'm trying to achieve a similar effect as the Notes application on the iPad, this transition was also reproduced by CulturedCode in their Things application for iPad.

My problem is that the animation is clipped to the bounds of the Detail View Controller, it doesn't animate into the Master View Controller, therefore limiting the effect. I see that Apple and CulturedCode managed to make this happen, but I'm stumped.

I've tried the following solutions:

self.splitViewController.view.clipToBounds = False; self.view.clipToBounds = False; self.tableView.clipToBounds = False;

The only other solution I can think of is discarding the UISplitViewController altogether and creating my own VC programmatically that will mimic the UISVC behavior so that both of the views (former separate view controllers) will share the same Super View.

Thank you in advance, any advice will help.

RR.

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about ipad