We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I try to perform a segue on Objective-C but i can't get access to variable primaryContentViewController, so I made an extension
MyPrimary *primaryViewController = [vc getPrimaryViewController];
primaryViewController.dato = dato;
extension PulleyViewController { @objc func getPrimaryViewController() -> UIViewController! { return primaryContentViewController }
@objc func getDrawerViewController() -> UIViewController { return drawerContentViewController }
}
But I like to know if there is another solution without the extension
The text was updated successfully, but these errors were encountered:
Objective-C is not officially supported by Pulley. As a result, I'm not sure what works/doesn't work.
Sorry, something went wrong.
there is a pure obj-c port that is practically 1:1 that i wrote for my company if you are interested in using that
No branches or pull requests
I try to perform a segue on Objective-C but i can't get access to variable primaryContentViewController, so I made an extension
MyPrimary *primaryViewController = [vc getPrimaryViewController];
primaryViewController.dato = dato;
extension PulleyViewController {
@objc
func getPrimaryViewController() -> UIViewController! {
return primaryContentViewController
}
}
But I like to know if there is another solution without the extension
The text was updated successfully, but these errors were encountered: