views:

40

answers:

1

In the Twitter for iPhone application (the app formerly known as Tweetie) there is nifty effect when pushing from the tweet view controller to the account view controller.

The name of the account, the profile image and the users name stay fixed in position while the navigation controller animates pushing a new controller on to the stack. Does anyone know how this is achieved?

I've tried pushing a non-animated viewcontroller on to the stack and overriding the viewDidAppear:animated: method but met with no luck.

A: 

It's possible those view items are not subviews of the viewcontroller's view. They could be subviews of a higher level view or subviews of the window or another window.

progrmr