我正在使用swift 2.2 for iOS app。
我有一个带有.TouchUpInside
事件的UIButton会触发UITextField
成为first responder
。
以下是输入:
self.manualInput = BrandTextField(y: 0, parentWidth: self.view.frame.width)
self.manualInput.returnKeyType = .Search
self.manualInput.autocorrectionType = .No
self.manualInput.hidden = true
self.manualInput.text = ""
self.manualInput.delegate = self
self.manualInput.autocapitalizationType = .AllCharacters
self.manualInput.moveX(0)
self.manualInput.changeWidth(self.view.frame.width)
self.manualInput.layer.cornerRadius = 0
self.backgroundView.addSubview(self.manualInput)
下面是按钮:
self.keyboardButton = ActionButton(x: Dimensions.xScaleValue(170), y: Dimensions.yScaleValue(495), onTitle: "Enter code", offTitle: "Enter code", onImage: "manual_entry", offImage: "manual_entry", imageOn: true, action: {
self.manualInput.becomeFirstResponder()
print("Open the input")
})
self.backgroundView.addSubview(self.keyboardButton)
我也有这两位观察员:
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(self.keyBoardWillShow), name: UIKeyboardDidShowNotification, object: nil)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(self.keyBoardWillHide), name: UIKeyboardWillHideNotification, object: nil)
func keyBoardWillShow(notification: NSNotification) {
print("Keyboard will show")
let frame = (notification.userInfo![UIKeyboardFrameEndUserInfoKey] as! NSValue).CGRectValue()
self.manualInput.moveY(frame.origin.y - self.manualInput.frame.height)
self.manualInput.hidden = false
}
func keyBoardWillHide(notification: NSNotification) {
print("Keyboard will hide")
self.manualInput.moveY(0)
self.manualInput.hidden = true
}
问题是当我按下iOS 11时的按钮时,会触发becomeFirstResponder()行,但不会显示键盘。
对我来说,奇怪的是,如果我初始化视图中的输入并使其不隐藏按钮仍然无效。除非我点击输入,否则关闭键盘,然后使用按钮触发。
我不知道在iOS 11的设置中是否遗漏了某些内容,或者我是否可以不再这样做了?
答案 0 :(得分:0)
您是否确保在主线程中调用becomeFirstResponder
?
DispatchQueue.main.async {
self.manualInput.becomeFirstResponder()
}
我遇到了类似的情况,在我这样做之后它可以正常工作。