Hello all. I have postponed posting this question before I tried every single thing I could think of, but alas, here I am. I've been banging my head against the wall in a fit of rage for days.
I'm having an issue trying to do a simple FlipFromRight transition on a table view. What I'm trying to achieve is the effect you get when you're listening to music on the iPod and it displays the cover art, hit the button in the upper right and the cover art flips over to reveal the tracks. That's all I'm trying to do!!
The tableview isn't part of a Navigation view or anything, just a stand alone. I can get it to where the
entire view on the screen flips to the correct thing, but not just the table itself.
I've reviewed all of the documentation from apple on transitions and animations, scoured the web for example code and I just can't seem to find _exactly_ the answer I'm searching for. Or maybe I'm over looking my answer in some kind of weird mental block? So I come to you oh great community of genius
ness.
Any help is much appreciated.
Below is a code snippit..
Code:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.35];
[UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:coverArt cache:YES];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[self.view addSubview:coverArt];
[trackTableView removeFromSuperview];
[UIView commitAnimations];