Enable Mac Keyboard instead of tapping the screen

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.

Enable Mac Keyboard instead of tapping the screen
 
 
Q