Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed prepare method called twice. #1240

Merged
merged 1 commit into from
May 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Sources/iOS/NavigationDrawer/NavigationDrawerController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ open class NavigationDrawerController: TransitionController {
*/
public required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
prepare()
}

/**
Expand All @@ -392,7 +391,6 @@ open class NavigationDrawerController: TransitionController {
*/
public override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
prepare()
}

/**
Expand All @@ -405,7 +403,6 @@ open class NavigationDrawerController: TransitionController {
super.init(rootViewController: rootViewController)
daniel-jonathan marked this conversation as resolved.
Show resolved Hide resolved
self.leftViewController = leftViewController
self.rightViewController = rightViewController
prepare()
}

open override func transition(to viewController: UIViewController, completion: ((Bool) -> Void)? = nil) {
Expand Down