Open josephpalbanese opened 8 years ago
Well done Joseph! 👍 Nice implementation of page control and other optional features!
I used modal segues a lot. How common are these for implementing segues in other apps?
Modal segues are used often for view controllers that are presented and then dismissed, (like terms of service) or when going to a new section of the app (after the tutorial welcome screens) where you won't necessarily return to.
Push Navigation, which uses Navigation Controllers, is very common when you want to keep a history of where you've gone and the user will be going backwards and forwards. A detail view would be a situation where you would use Push Navigation.
All done! cc @thecodepath