j.doe
j.doe

Reputation: 305

how to replicate iOS mail new message animation

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.

enter image description here

Upvotes: 1

Views: 332

Answers (1)

Sunil
Sunil

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

Related Questions