当前位置:  开发笔记 > IOS > 正文

如何向UITextField添加清除按钮?

如何解决《如何向UITextField添加清除按钮?》经验,为你挑选了1个好方法。

与将"清除"按钮添加到iPhone UITextField相同,但那个是旧的.我试过了

myUITextField.clearButtonMode = UITextFieldViewModeWhileEditing;

但什么也没发生.什么可能阻止它?



1> 4thSpace..:

在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;
    }

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有