zoukankan      html  css  js  c++  java
  • UITextView

     

    1.        text: 设置textView中文本

    _textView.text = @"Now is the time for all good developers to come to serve their country. Now is the time for all good developers to come to serve their country."; // 设置它显示的内容

    2.        font:设置textView中文字的字体

    _textView.font = [UIFontfontWithName:@"Arial"size:18.0]; // 设置字体名字和字体大小

    3.        textColor:设置textView中文本的颜色

    _textView.textColor = [UIColorblackColor]; // 设置textview里面的字体颜色

    4.        textAlignment:设置textView的文本的排列方式

    _textView.textAlignment = NSTextAlignmentCenter; // textView中的文本排列,默认靠左

     

    5.        backgroundColor:设置textView的背景颜色

    _textView.backgroundColor = [UIColorgrayColor]; // 设置浅灰色的背景色,默认为白色

    6.        delegate:设置代理

    _textView.delegate = self; // 设置代理

     

    7.        editable:设置textView是否可被输入

    _textView.editable = NO; // textView是否可被输入,默认为YES

     

    8.        attributedText:设置默认插入textView的文字

    _textView.attributedText = [[NSAttributedStringalloc]initWithString:@"attributedText__-abc"]; // 可以方便将文本插入到UITextView中。

     

    9.        inputView:设置从底部弹出的视图

    _textView.inputView = [[UIDatePickeralloc]init]; // 弹出视图,默认为键盘

     

     

    10.  inputAccessoryView:设置弹出视图上方的辅助视图

    _textView.inputAccessoryView = [UIButtonbuttonWithType:UIButtonTypeDetailDisclosure]; // 弹出视图上方的辅助视图

     

    11.  clearsOnInsertion:设置textView获得焦点,在用户使用虚拟键盘进行输入时,清除之前的文本

    _textView.clearsOnInsertion = YES; // clearsOnInsertion,默认为NO

     

  • 相关阅读:
    sklearn.model_selection.validation_curve 验证曲线
    sklearn.model_selection.learning_curve学习曲线
    sklearn.pipeline.Pipeline管道简化工作流
    什么时候需要做数据标准化
    小程序获取用户默认地址的代码
    微信小程序--更换用户头像/上传用户头像/更新用户头像
    小程序 image跟view标签上下会有间隙
    小程序宽100%,高自适应怎么做?
    小程序图片点击放大右滑
    小程序can't read property 'push' of undefined
  • 原文地址:https://www.cnblogs.com/supper-Ho/p/6206896.html
Copyright © 2011-2022 走看看