Last active
July 3, 2020 07:42
-
-
Save alfian0/5b7c2e19eea3b386b6273de66b0602f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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