Reputation: 305
how to replicate this animation where user can scroll the (new message)view controller up and down on top of the (inbox)view controller and the (inbox)view controller appears to be stacked behind.
Upvotes: 1
Views: 332
Reputation: 758
You can use UIKit Dynamics to achieve the same effect. Use UIAttachmentBehavior to tie the new "card" (VC's view snapshot) and a relative center point. Use UICollisionBehavior between the card and borders of the screen to prevent the card moving sideways.
Upvotes: 2