I'm trying to create a multiplatform desktop application.
I can register global hotkeys in Windows via P/Invoke like this.
I need to do the same in iOS (probably something with MonoPInvokeCallbackAttribute)
What is the best practice to do this in iOS? Maybe there is some managed wrapper (in Gtk# or else?) so I can have the same codebase without ifdefs?
Thank you!