gpt4 book ai didi

ios - 当我点击 TextField 并且不显示键盘时。我该如何使用?

转载 作者:行者123 更新时间:2023-11-29 11:59:09 24 4
gpt4 key购买 nike

我是新的 iOS 应用程序开发人员。我想尝试当我点击 textfield 并且不显示键盘但 textfield 点击然后显示光标点时。我怎么能试试这个?我想试试这个代码,但它没有用。

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[textField resignFirstResponder];

}

最佳答案

您可以调用该函数。

并实现.h文件。

@interface ViewController : UIViewController<UITextFieldDelegate>

执行.m文件。

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
if (!textField.inputView) {
//it hides the keyboard, but cursor will show
textField.inputView = [[UIView alloc] initWithFrame:CGRectZero];
}
return YES;
}

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
return NO;
}

关于ios - 当我点击 TextField 并且不显示键盘时。我该如何使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37770709/

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