*Xcode Project Entry* Letters in a Word - Part 3
So great progress last time! I got to the point where I need to work on a couple of key things - getting a way to type in the answer is the first priority. One option is to try to add in the return key, this could sort out the issue with using text field. IF NOT, then I will have to add the buttons separately. Then find a way of linking those to a label display...easier said than done! Start Time - 20:16 First thing's first, let's try out the return key option.... OK tried a couple of things on Stack Overflow but not clear. Now trying this: https://www.youtube.com/watch?v=bhp08NX4Pe4 So I've followed various steps but the app is taking an AGE to load. This is not a good sign obviously! From the tutorial: func hideKeyboard() { textFieldDisplay . resignFirstResponder () } func textFieldShouldReturn( _ textField: UITextField ) -> Bool { ...