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.
- Host: GitHub
- URL: https://github.com/nathanborror/transitionsexample
- Owner: nathanborror
- Created: 2014-04-27T23:58:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-28T03:37:46.000Z (over 11 years ago)
- Last Synced: 2025-01-12T13:26:11.160Z (12 months ago)
- Language: Objective-C
- Homepage:
- Size: 141 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)