gpt4 book ai didi

ios - 防止在 UITextField 中编辑文本并在使用 inputView 时隐藏光标/插入符号/放大镜

转载 作者:IT王子 更新时间:2023-10-29 08:17:41 31 4
gpt4 key购买 nike

如何防止在 UITextField 中编辑文本并隐藏光标/插入符号/放大镜,但仍然显示键盘,因为我正在使用 inputView 使用 UIPickerView/UIDatePickerView?

userInteractionEnabled 设置为 NO 不起作用,因为它不再接收任何触摸并且不会显示键盘。

最佳答案

子类 UITextField

//Disables caret
- (CGRect)caretRectForPosition:(UITextPosition *)position
{
return CGRectZero;
}

//Disables magnifying glass
-(void)addGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
{
if ([gestureRecognizer isKindOfClass:[UILongPressGestureRecognizer class]])
{
gestureRecognizer.enabled = NO;
}
[super addGestureRecognizer:gestureRecognizer];
}

在您的 UITextFieldDelegate 中

//Prevent text from being copied and pasted or edited with bluetooth keyboard.
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
return NO;
}

现在只需根据 UIPickerView/UIDatePicker 的结果以编程方式设置文本。

关于ios - 防止在 UITextField 中编辑文本并在使用 inputView 时隐藏光标/插入符号/放大镜,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18139234/

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