Last active
May 7, 2020 22:24
-
-
Save faganello60/0f9dab0e658476ddf0cd70947152ec00 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
public init(childViewController: UIViewController) { | |
self.childViewController = childViewController | |
super.init( | |
nibName: String(describing: BottomSheetViewController.self), | |
bundle: Bundle(for: BottomSheetViewController.self) | |
) | |
modalPresentationStyle = .overFullScreen | |
modalTransitionStyle = .crossDissolve | |
} | |
required init?(coder aDecoder: NSCoder) { | |
fatalError("init(coder:) has not been implemented") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment