An open API service indexing awesome lists of open source software.

https://github.com/nathanborror/transitionsexample

An exercise showing how to use custom interactive UIViewController transitions.
https://github.com/nathanborror/transitionsexample

Last synced: 10 months ago
JSON representation

An exercise showing how to use custom interactive UIViewController transitions.

Awesome Lists containing this project

README

          

TransitionsExample
==================

An exercise showing how to use custom interactive UIViewController transitions. After building the app
you should be able to edge swipe from left to right to bring a new UIViewController onto the stack.
Swiping from the right edge to the left should do this same (it doesn't right now).

TODOs:
------

- Fix back swiping
- Refactor CustomTransition class so it doesn't know about specific view controllers
- Simplify

Things I read along the way:

- [View Controller Transitions (objc.io)](http://www.objc.io/issue-5/view-controller-transitions.html)
- [Custom UIViewController Transitions (teehanlax.com)](http://www.teehanlax.com/blog/custom-uiviewcontroller-transitions/)
- [WWDC unofficial sample code (github.com)](https://github.com/soleares/SOLPresentingFun)
- [iOS7 interactive transitions (dativestudios.com)](http://dativestudios.com/blog/2013/09/29/interactive-transitions/)