美文网首页
键盘回收

键盘回收

作者: 路这么长 | 来源:发表于2016-11-17 10:36 被阅读11次
    初始化一个UITextField
    
    //在固定方框中初始化
    
    UITextField *text = [[UITextField alloc] initWithFrame:CGRectMake(60, 100, 200, 40)];
    
    //设置边框格式
    
    typedef enum{
    
    UITextBorderStyleNone,//无框
    
    UITextBorderStyleLine,//线框
    
    UITextBorderStyleBezel,//贝塞尔风格线框
    
    UITextBorderStyleRoundedRect//圆角边框
    
    }
    
    text.borderStyle = UITextBorderStyleRoundedRect;
    
    //设置默认的文本显示
    
    text.placeholder = @"平时输入时候的默认显示文字";
    
    //设置背景颜色
    
    text.backgroundColor = [UIColor whiteColor];
    
    //设置自己为代理,实现输入完毕后键盘取消第一响应
    
    text.delegate = self;
    
    //实现UITextFieldDelegate的方法
    
    - (BOOL)textFieldShouldReturn:(UITextField *)textField
    
    //当点击键盘上return按钮的时候调用
    
    {
    
    //代理记录了当前正在工作的UITextField的实例,因此你点击哪个UITextField对象,形参就是哪个UITextField对象
    
    [textField resignFirstResponder];//键盘回收代码
    
    return YES;
    
    }
    

    相关文章

      网友评论

          本文标题:键盘回收

          本文链接:https://www.haomeiwen.com/subject/hqjdpttx.html