-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Switches to UIResponder for App/Scene delegates #4391
Conversation
This is the proper inheritence chain and allows us to use things like overriding the BuildMenu method. This fixes #4390
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
Just a note that this is a massive breaking change for anyone that has any extension methods or parameters that took the concrete class, but this is definitely a more future-proof interface to use. Should we ever actually use the concrete type for extensions/parameters? It is an iOS protocol after all. |
Maybe this should be made |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now for reals 👍
This is the proper inheritence chain and allows us to use things like overriding the BuildMenu method.
This fixes #4390