问题
I saw this amazing transition in an app: when the user clicks on an item in the tableview and it "drills down" the transition is done "on top" of a background. That is the background image is static and just the actual tableview and whatever is presented after pressing something is moving (from right to left as usual).
How is this layered tableview transition done? Anyone knows?
(the app is "Munch-5-a-day" in the info-view)
回答1:
Endemic gives you the right direction. Another way can be view controllers with transparent background and then customize UIWindow.
回答2:
UINavigationController is a subclass of the standard UIViewController class, so it inherits the view property of UIViewController. I would imagine that the background image transition consists of two important steps:
- Assign a UIImageView containing the desired background image to the
viewproperty of the NavController - Set
self.view.backgroundColor = [UIColor clearColor]in each ViewController, most likely in theviewDidLoadmethod.
I'm currently unable to test this, but it should work.
Reference: UINavigationController Class Reference
来源:https://stackoverflow.com/questions/4291594/uitableview-transition-when-drilling-down