gpt4 book ai didi

iphone - 一次清除多个文本字段

转载 作者:行者123 更新时间:2023-12-03 21:23:43 27 4
gpt4 key购买 nike

我正在尝试找出同时清除多个文本字段的代码。我知道还有另一个类似的问题及其答案,但我可以获得更多信息或代码示例吗?我的应用程序中有 16 个文本字段。

谢谢

最佳答案

查看 UITextFieldDelegate方法,具体来说,textFieldShouldClear 。当有人点击文本字段中的小 x 时会调用此函数。我将为您提供一种方法,当点击其中一个文本字段或点击任何其他按钮时清除所有文本字段

- (void)clearAllTextFields {
for (UITextField *textField in [self textFields]) { //textFields is an rray that is holding pointers to your 16 text fields
[textField setText:nil];
}
}

如果您希望在按下按钮或其他操作时发生这种情况,请将其添加为目标。如果点击字段中的 x 之一,您将执行以下操作:

- (BOOL)textFieldShouldClear:(UITextField *)textField {
[self clearAllTextFields];
return YES;
}

更新:

UIButton *button = [[[UIButton alloc] initWithFrame:CGRectMake(0,0,100,44)] autorelease];
[button setTitle:@"blah forState:UIControlStateNormal];
[button addTarget:self action:@selector(clearAllTextFields) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];

关于iphone - 一次清除多个文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2520029/

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