博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITextView总结
阅读量:6270 次
发布时间:2019-06-22

本文共 1296 字,大约阅读时间需要 4 分钟。

hot3.png

1. text: 设置textView中文本

_textView.text = @"Now is the time for all good developers to come to serve their country.\n\nNow is the time for all good developers to come to serve 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

转载于:https://my.oschina.net/khakiloveyty/blog/395963

你可能感兴趣的文章
机器学习(Machine Learning)&深度学习(Deep Learning)资料
查看>>
jquery的图片轮播 模板类型
查看>>
C# 获取文件名及扩展名
查看>>
Web安全学习计划
查看>>
输出有序数组的连续序列范围
查看>>
zinnia项目功能分析
查看>>
windows cmd for paramiko
查看>>
SQL经典面试题集锦
查看>>
View学习(一)-DecorView,measureSpec与LayoutParams
查看>>
色彩力量!21款你应该知道的优秀品牌设计
查看>>
SDUT 3503 有两个正整数,求N!的K进制的位数
查看>>
【.Net】C# 根据绝对路径获取 带后缀文件名、后缀名、文件名、不带文件名的文件路径...
查看>>
Redis常用命令速查 <第二篇>
查看>>
CSS规范
查看>>
使用FastDateFormat来代替JDK自带的DateFormat
查看>>
Python爬虫从入门到放弃(十六)之 Scrapy框架中Item Pipeline用法
查看>>
Android源代码解析之(三)--&gt;异步任务AsyncTask
查看>>
(zhuan) 自然语言处理中的Attention Model:是什么及为什么
查看>>
C#中使用RabbitMQ收发队列消息
查看>>
Hadoop1.2.1 全然分布式集群搭建实操笔记
查看>>