The keyboard does not show up when I run the simulator and click in the UITextView. How do I re-enable the keyboard?
It used to work but now it doesn't - I don't know what I might have clicked by accident.
I had the same issue. My solution was as follows:
iOS Simulator -> Hardware -> Keyboard Uncheck "Connect Hardware Keyboard"
Mine was checked because I was using my mac keyboard, but if you make sure it is unchecked the iPhone keyboard will always come up.
While testing in the ios8 beta simulator, you may toggle between the "software keyboard" and "hardware keyboard" with ⌘+K.
UPDATE: Since iOS Simulator 8.0, the shortcut is ⇧+⌘+K.
Simulator -> Hardware -> Keyboard -> Toggle Software Keyboard should solve this problem.
https://i.stack.imgur.com/mJcDq.png
This seems to be a bug in iOS 8. There are two fixes to this problem :
Toggle between simulator keyboard and MacBook keyboard using the Command+K shortcut. Reattach keyboard to simulator : a. Open Simulator b. Select Hardware -> Keyboard c. Uncheck and then check 'Connect Hardware Keyboard'
https://i.stack.imgur.com/AU9Qd.png
OR simply press the Shift + Command + K shortcut
To enable/disable simulator keyboard,
⌘ + K (Ctrl + k)
To disable input from your keyboard,
iOS Simulator -> Hardware -> Keyboard -> Uncheck "Connect Hardware Keyboard"
You can use : ⇧+⌘+K to show keyboard on simulator.
Just press ⌘K it will toggle keyboard.
To enable/disable simulator keyboard: click ⇧+⌘+K to show the keyboard on simulator, click again to disable (hide) the keyboard.
⇧+⌘+K
It would be difficult to say if there's any issue with your code without checking it out, however this happens to me quite a lot in (Version 6.0 (6A216f)). I usually have to reset the simulator's Content and Settings and/or restart xCode to get it working again. Try those and see if that solves the problem.
In the new simulator Hardware option is removed,
If you want to find a Keyboard option manually, Then click on the I/O section,
I/O -> Keyboard ->Toggle Software Keyboard(⌘K)
https://i.stack.imgur.com/RRfuH.jpg
https://i.stack.imgur.com/mVzvC.png
To fix the problem follow this -
Quit Xcode and simulator Press ‘command+shift+g’ .. it will open the “go to folder” dialog. type “~/Library/Preferences” in this dialog to go to your preference folder. Delete “com.apple.iphonesimulator.plist” in this folder Done. “com.apple.iphonesimulator.plist” will be regenerated when you start simulator again.
Alternatively you can also do this with just one command.
Open terminal and fire - 1. rm ~/Library/Preferences/com.apple.iphonesimulator.plist
This will do the trick in one step! Just make sure you quit Xcode and simulator before running this.
If keyboard do not shown up automatically in simulator, just press [Command+K]
or Hardware -> Keyboard -> Toggle Software Keyboard
in viewDidLoad add this line
yourUiTextField.becomeFirstResponder()
Simple way is just Press command + k
Success story sharing
UIInputAccessoryView
still displays at the bottom of the screen.Connect Hardware Keyboard
I can't type using my Mac's keyboard. In pre-iOS 8 it didn't "simulate a hardware keyboard", it just allowed you to additionally type using your Mac.