gpt4 book ai didi

ios - 无法在 UITextField 中移动光标

转载 作者:行者123 更新时间:2023-12-02 13:27:02 25 4
gpt4 key购买 nike

我有一个相当标准的用户界面,其中有一个文本字段嵌入在几个 subview 中。我遇到一个问题,在文本字段中输入内容后,我无法移动光标,它会不断地移回到输入的开头。

代码中的任何位置都不会调用任何方法来更改编辑位置,例如 setSelectedTextRange 或类似的方法。

请原谅 Objective-C,这是一个遗留代码库!

self.textField = [UITextField new];
self.textField.text = element.value;
self.textField.placeholder = element.placeholder;
self.textField.returnKeyType = UIReturnKeyNext;
self.textField.delegate = self;
self.textField.autocorrectionType = element.autocorrectionType;
self.textField.autocapitalizationType = element.autocapitalizationType;
self.textField.secureTextEntry = element.secureTextEntry;
self.textField.keyboardType = element.keyboardType;
[self.textField addTarget:self action:@selector(handleTextChange:) forControlEvents:UIControlEventEditingChanged];
[self addSubview:self.textField];
- (void)handleTextChange:(UITextField *)sender
{
self.inputElement.value = sender.text;

// If we're showing the validation warning, give real time feedback to user
if (self.isShowingValidationWarning) {
[self validate];
}
}

- (void)validate
{
BOOL isValid = self.inputElement.isValid;

[self showValidationHint:!isValid animated:YES];
}

- (void)showValidationHint:(BOOL)show animated:(BOOL)animated
{
self.isShowingValidationWarning = show;

CGFloat duration = 0.0;

if (animated) {
duration = 0.2;
}

[UIView animateWithDuration:duration animations:^{

if (show) {

self.characterCountLabel.alpha = 0.0;
self.validationButton.alpha = 1.0;
self.validationButton.transform = CGAffineTransformMakeScale(1.0, 1.0);
} else {

self.characterCountLabel.alpha = 1.0;
self.validationButton.alpha = 0.0;
self.validationButton.transform = CGAffineTransformMakeScale(0.1, 0.1);
}
}];
}

inputElement.value 没有 setter 或 getter 函数,因此没有什么奇怪的事情发生!

最佳答案

这里的答案正是@juanreyesv 在评论中指出的! becomeFirstResponder 调用已移至 viewDidAppear 而不是 viewWillAppear,现在可以正常工作了!

关于ios - 无法在 UITextField 中移动光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58415101/

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