Upgrade to Pro — share decks privately, control downloads, hide ads and more …

ios13 presentations

joyful1227
December 12, 2019

ios13 presentations

WWDC2019 ios13

joyful1227

December 12, 2019
Tweet

More Decks by joyful1227

Other Decks in Programming

Transcript

  1. - Root Controller’s view is not as scaled down and

    not removed from the view hierarchy - The layering of this design gives your users a sense of context about where they are in your application.
  2. class MyViewController: UIViewController {a func showOptions() {a let optionsVC =

    MyOptionsViewController() present(optionsVC, animated: true) }a func showCustomCamera() {a let cameraVC = MyCameraViewController() present(cameraVC, animated: true) }a }a