gpt4 book ai didi

iphone - 如何向 UITextField 添加清除按钮?

转载 作者:行者123 更新时间:2023-12-03 19:41:06 27 4
gpt4 key购买 nike

Adding the "Clear" Button to an iPhone UITextField 相同但那个已经很旧了。我试过了

myUITextField.clearButtonMode = UITextFieldViewModeWhileEditing;

但什么也没发生。什么可以阻止它?

最佳答案

在 cellForRowAtIndex 中,在我的情况下,修复如下所示:

cell = [tableView dequeueReusableCellWithIdentifier:@"CellNameIdentifier"];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"CellName" owner:self options:nil];
cell = cellName;
[cellName setAccessoryType:UITableViewCellAccessoryNone];
//textfield in inside cellName
textfield.clearButtonMode = UITextFieldViewModeWhileEditing;
}

关于iphone - 如何向 UITextField 添加清除按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/656889/

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