Adding the "Clear" Button to an iPhone UITextField相同,但其中一个很旧。我试过了

myUITextField.clearButtonMode = UITextFieldViewModeWhileEditing;


但是什么也没发生。有什么可以预防的呢?

最佳答案

在cellForRowAt Index中,对于我而言,此修复程序如下所示:

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/

10-09 02:22