*Xcode Project Entry 3* Times Tables Quiz - Part 5
This is cheating....a little! The day after my last entry, I managed to fix and completely sort out the app! I spent a good hour or so on it, changing the code so that the pop ups came up for the end of the timer. What a feeling it was to sort it all out! One of the issues was not having all outlets connected and having some bogus ones, which I removed. That helped. This bit I commented out as it made no difference: // // func hideKeyboard() { // textFieldDisplay.resignFirstResponder() // } // // func textFieldShouldReturn(_ textField: UITextField) -> Bool { // textFieldDisplay.resignFirstResponder() // return true // } I'm not entirely convinced that I need the keyboard code at all...let's see! Actually no real other code there other than the UITextFieldDelegate is conformed to (for the textbox). So here's what we ...