Reputation: 27325
The iOS simulator shortcuts frequently use the command key. I notice that when running in the simulator, attempts in my program to catch command-z, command-y, etc. don't work. I assume the reason is that the system interprets them as simulator commands, not keypresses to be passed to my iOS app.
Is there a way to change that behavior?
Upvotes: 2
Views: 1652
Reputation: 2446
For your case when you use command-z, command-y, etc. first time in simulator you paste it to Simulator buffer. For paste to your app you need add Shift key for second time command-z+shift, command-y+shift
I'm not sure for possible changes this behavior. Try to find the same shortcuts in Settings (Xcode and Mac)
Upvotes: 2