PaoloCuscela / Cards

Awesome iOS 11 appstore cards in swift 5.
MIT License
4.2k stars 274 forks source link

Animation problem of card and tabbar #58

Closed JUJUNJIE closed 6 years ago

JUJUNJIE commented 6 years ago

screenrecording_07-25-2018 15-11-01 How to fix the problem of card and tabbar?

walterkyo commented 6 years ago

The pop-up detail card view is actually a new view controller so it covers tabbar naturally. Instead you could set the detail view size to show the tabbar but the tabbar won't be able to click.

PaoloCuscela commented 6 years ago

@walterkyo Exactly. You can solve this by hiding the tabbar before the animation in the Animator file so the snapshot in the animation context will be TabBar-free. Apple anyway solves this by presenting a new tab bar in the animation context.