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

.then closures not called #33

Open
olSolo opened this issue Mar 1, 2019 · 0 comments
Open

.then closures not called #33

olSolo opened this issue Mar 1, 2019 · 0 comments
Labels

Comments

@olSolo
Copy link

olSolo commented Mar 1, 2019

Example:

MyModuleInput

protocol MyModuleInput: class {
    func configureModule(item: ARItemInfo)
}

Presetning module router:

            try self.transitionHandler!.forSegue(identifier: segueIdentifier, to: MyModuleInput.self).then({ (moduleInput) in
                moduleInput.configureModule(item: item)
            })

If MyModuleInput protocol is NOT defined as class, the .then block will not be invoked.
I think there must be some kind of warning or a check for this case

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants