gpt4 book ai didi

ios - 文本字段未检测到触摸

转载 作者:行者123 更新时间:2023-11-30 12:19:55 26 4
gpt4 key购买 nike

我在用 Swift 编写的 iOS 应用程序中发现了一个奇怪的问题。有时文本字段不起作用,即文本字段未检测到触摸并且键盘未显示。每个 View Controller 中的所有文本字段突然停止工作。非常感谢您的帮助,谢谢。

编辑:添加一些代码

 override func viewDidLoad()
{
super.viewDidLoad()

oldPswdTextField.delegate = self
newPswdTextField.delegate = self
confirmPswdTextField.delegate = self
}

////点击后退按钮///////

func resignAllResponsers()
{
if oldPswdTextField.isFirstResponder
{
oldPswdTextField.resignFirstResponder()
}
else if newPswdTextField.isFirstResponder
{
newPswdTextField.resignFirstResponder()
}
else if confirmPswdTextField.isFirstResponder
{
confirmPswdTextField.resignFirstResponder()
}
}

//////////////////

func textFieldShouldClear(_ textField: UITextField) -> Bool
{
if textField.tag == 0
{
showPswdBtn.setImage(UIImage(named: "eyeClose.png"), for: UIControlState.normal)
}
else if textField.tag == 1
{
showNewPswdBtn.setImage(UIImage(named: "eyeClose.png"), for: UIControlState.normal)
}

return true
}

func textFieldShouldReturn(_ textField: UITextField) -> Bool
{
textField.resignFirstResponder()
return true;
}

最佳答案

我找到了解决方案。问题是因为 ui 警报 Controller 错误地解除了。改正后,textField问题就解决了。

关于ios - 文本字段未检测到触摸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44919545/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com