colt
colt

Reputation: 89

Programmatically Simulate Keyboard Events on the iPhone

I was wondering if it would be possible to simulate keyboard events - like key down and key up characters - and send them to the iOS device. Basically, I want to simulate a user pressing a key on the keyboard.

Upvotes: 5

Views: 5016

Answers (2)

Olaf
Olaf

Reputation: 3042

have a look at "Automated GUI testing for iOS", for example Automated testing for iPhone and How about UI automation testing for iOS app with instruments & Javascripts

You might not want a full blown automated test solution, but that way you can simulate your keyboard events.

There is also a blogpost mentioned: http://alexvollmer.com/posts/2010/07/03/working-with-uiautomation/

Upvotes: 1

Pritesh Acharya
Pritesh Acharya

Reputation: 1626

I don't think that's possible. But you could write code in textfield delegate or use NSNotificationCenter to get notification of each keypress. If that's what you are looking for.

Upvotes: 0

Related Questions