I have a horizontal UITableView and it has a subclass of a UITableViewCell. I am trying to have an animation where if someone taps on the UITableViewCell the cell does a backflip animation and resizes into a modal view. How and what is the easiest way to do this?
Share
For this you can actually perform exactly what you want using UIView’s class method:
http://developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview/uiview.html
You could do the following:
I recommended that you create a clone otherwise the cell is removed from the tableview:
edit: I forgot to mention, the animation that you’re looking for is
UIViewAnimationOptionTransitionFlipFromBottom