Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS UI - App Store Explore section Transition

I was wondering if this nice master-detail transition where you click on the tableView cell and it expand to disclose the detail , with the cell's label being the navigation bar title is an interface which is part of the SDK object library or it is a customised one?

enter image description here

like image 542
luca Avatar asked Jun 16 '15 09:06

luca


2 Answers

This is a custom transition between ViewControllers. There's a nice example of a few transitions (including this one) in this library.

enter image description here

Of course you'll need to add the tableview etc' but this is a great place to start.

like image 143
Segev Avatar answered Nov 16 '22 11:11

Segev


I've tried few things but so far this is the best option I could think of. Animating the frames of all the visible cells and making use of childViewController is how I achieved it.

Animation test project

https://github.com/armaluca/iOS-App-Store-Explore-Section-Animation

Would be nice to know any other possible solution and ultimately to know how Apple did it!

enter image description here

like image 37
luca Avatar answered Nov 16 '22 13:11

luca