In the iOS Facebook app, when you tap on a photo, the photo takes up the entire screen and you can then pull up or down on the photo to dismiss the view. Pulling on the photo allows you to see the screen underneath.
I'm curious as to the best way to implement this, since I'm not entirely sure if this is an actual transition between view controllers, or just some fancy animations with presenting a subview in the current view controller.
The former would be interesting, in order to maintain the view controller paradigm and keep everything compartmentalized. If the latter, what would be the best approach to encapsulation?
