change user mac interface xcode switch from tap to keyboard
instead of the user tapping the mouse I want them to click the spacebar
change user mac interface xcode switch from tap to keyboard
instead of the user tapping the mouse I want them to click the spacebar
You can use
#if targetEnvironment(macCatalyst)
...(Mac code)
#else
...(iOS code)
#endif
Do whatever changes you want.