Skip to content

Instantly share code, notes, and snippets.

@alfian0
Last active July 3, 2020 07:42
Show Gist options
  • Save alfian0/5b7c2e19eea3b386b6273de66b0602f2 to your computer and use it in GitHub Desktop.
Save alfian0/5b7c2e19eea3b386b6273de66b0602f2 to your computer and use it in GitHub Desktop.
class DetailController: UIViewController {
let transition = MenuTransition()
init() {
super.init(nibName: "DetailController", bundle: nil)
modalPresentationStyle = .custom
transitioningDelegate = transition
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment