gpt4 book ai didi

ios - 点击 UITextField 不工作

转载 作者:可可西里 更新时间:2023-11-01 01:24:37 26 4
gpt4 key购买 nike

我读了很多书试图找到一种方法来处理 uitextfield click 但对我没有任何作用

我想要的:

我想在 UITextField 上添加点击并打开对话框

我尝试过的:

class CreateMessagesViewController: UIViewController {

@IBOutlet weak var testField: UITextField!
@IBOutlet weak var testView: UIView!

override func viewDidLoad() {
super.viewDidLoad()

let tap = UITapGestureRecognizer(target: self, action: #selector(self.handleTap(_:)))
// testField.addGestureRecognizer(tap)
testView.addGestureRecognizer(tap)

testField.addTarget(self, action: #selector(onTapped(_:)), for: .touchDown)
}

func onTapped(_ sender : UITextField){

print("Hello World")
}

func handleTap(_ sender: UITapGestureRecognizer) {
print("Hello World")
}
}

如你所见,我尝试了两种方法:

  1. UITapGestureRecognizer
  2. 选择器

只是为了测试,我添加了简单的 UIView 以确保点击可以正常工作。

为什么它在 uiTextField 上不起作用?有什么我遗漏的吗?

最佳答案

您可以编写打开对话框的代码,而不是添加手势识别器

func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool{
openDialog()//Function which will open the dialog
return false
}

我觉得应该和你想要的效果一样

关于ios - 点击 UITextField 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42085608/

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