gpt4 book ai didi

ios - 2 UITextField 和 1 UIDatePicker : How can I let UIDatePicker know where to display the . 日期

转载 作者:行者123 更新时间:2023-11-30 11:56:03 27 4
gpt4 key购买 nike

我有 2 个 UITextField 调用同一个 UIDatePicker,如何让 UIDatePicker 知道在文本字段中设置所选日期时调用哪一个 UITextField?

最佳答案

您可以在这些类型的场景中使用 Controller /UI 元素标记号。您可以在 viewDidLoad() 上或通过 stroybaord 为文本字段指定特定的标记号(Int 值)。

来自 Storyboard:-

enter image description here

为两个文本字段提供不同的标签号

来自代码:-

override func viewDidLoad() {
self.texField1.tag = 1
self.textField.tag = 2
}

然后您可以通过调用来识别每个文本字段

 if textfield.tag == 1 {

} else textfield.tag == 2 {

}

关于ios - 2 UITextField 和 1 UIDatePicker : How can I let UIDatePicker know where to display the . 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47804591/

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