zoukankan      html  css  js  c++  java
  • iOS-开发日志-UITextView介绍

    UITextView

    属性

    1.     text: 设置textView中文本

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

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

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

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

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

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

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

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

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

    6.     delegate:设置代理

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

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

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

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

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

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

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

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

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

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

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

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    C#:基于WMI查询USB设备信息 及 Android设备厂商VID列表
    C#中 @ 的3种用途
    有关于 使用 命名管道 进行网络 进程间通信 的资料收集
    MySql LAST_INSERT_ID 【插入多条数据时】
    两个“不合理继承 ”的判定标识
    MYSQL 函数 字符串到整数
    Spring MVC 对于@ModelAttribute 、@SessionAttributes 的详细处理流程
    重构,拥有多个构造函数(重载)的类
    vue二级联动select
    gulp.dest用法详解
  • 原文地址:https://www.cnblogs.com/wahy/p/4817212.html
Copyright © 2011-2022 走看看