当我在iPhone模拟器中触摸我的文本字段时,键盘光标没有出现。我不知道为什么。这些是我的视图控制器中与键盘相关的唯一功能。

 // hides keyboard when user touches outside of text field
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
    self.view.endEditing(true)
}

// hides keyboard when user presses 'return'
func textFieldShouldReturn(textField: UITextField) -> Bool {

    if (textField === emailField) {
        emailField.resignFirstResponder()
    }
    else if (textField === usernameField) {
        usernameField.resignFirstResponder()
    }
    else {
        passwordField.resignFirstResponder()
    }
    return true
}

最佳答案

尝试更改您的tintColorUITextField属性(例如,更改为默认的UIColor.blueColor)。

关于ios - Xcode 6键盘光标未出现在模拟器中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27871013/

10-16 14:38