Skip to content

Instantly share code, notes, and snippets.

@faganello60
Last active May 7, 2020 22:24
Show Gist options
  • Save faganello60/0f9dab0e658476ddf0cd70947152ec00 to your computer and use it in GitHub Desktop.
Save faganello60/0f9dab0e658476ddf0cd70947152ec00 to your computer and use it in GitHub Desktop.
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