Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAlexander La Bianca
15,959 PointsKeyboard does not appear
Hi My keyboard does not appear when I click on the textfield. Instead it just takes input from my keyboard. It has been working fine before this method. My code looks just like pasan's. My keyboard also did not contain a "Done" button. It was a "return" button instead.
1 Answer
Steven Deutsch
21,046 PointsHey Alexander La Bianca,
So you have two issues to resolve:
1) Your keyboard is not showing up in the simulator.
You can show the keyboard by going into the menu for simulator Hardware -> Keyboard -> Toggle Software Keyboard
2) You need to change the return key from "Return" to "Done"
You can do this through the utilities panel in Xcode. Just select the text field and then go to the attributes inspector. You will see an option for "Return Key". Select the "Done" option from the drop down menu. You will need to do this for all text fields you want this change to appear on.
Good Luck!
Jason Anders
Treehouse Moderator 145,860 PointsJason Anders
Treehouse Moderator 145,860 PointsThanks Steven Deutsch!
That just happened to me in the next set of videos, and I had no clue what happened. Seems like a weird setting to just randomly change itself??