gpt4 book ai didi

ios - 编辑时在文本字段上隐藏键盘

转载 作者:行者123 更新时间:2023-11-28 08:18:37 27 4
gpt4 key购买 nike

当我在 UITextField 上使用 DateTime 选择器时如何隐藏键盘。当我点击 UITextField 时,首先显示键盘,而不是在选定的 UITextField 上显示 DateTime Picker。请给我适当的解决方案。

最佳答案

1.如下图设置textField delegate

(一)

enter image description here

(乙)

enter image description here

2.添加textField委托(delegate)方法

swift

func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {
// Implement your Date Time Picker initial Code here
return false
}

objective-c

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
// Implement your Date Time Picker initial Code here
return NO;
}

关于ios - 编辑时在文本字段上隐藏键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41893822/

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