首页 技术 正文
技术 2022年11月15日
0 收藏 740 点赞 3,959 浏览 1172 个字

UITextView相关属性

•    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.”; // 设置它显示的内容
    •    font:设置textView中文字的字体
_textView.font = [UIFont fontWithName:@”Arial” size:18.0]; // 设置字体名字和字体大小

•    textColor:设置textView中文本的颜色
_textView.textColor = [UIColor blackColor]; // 设置textview里面的字体颜色

•    textAlignment:设置textView的文本的排列方式
_textView.textAlignment = NSTextAlignmentCenter; // textView中的文本排列,默认靠左

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

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

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

•    attributedText:设置默认插入textView的文字
_textView.attributedText = [[NSAttributedString alloc]initWithString:@”attributedText__-abc”]; // 可以方便将文本插入到UITextView中。

•    inputView:设置从底部弹出的视图
_textView.inputView = [[UIDatePicker alloc]init]; // 弹出视图,默认为键盘

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

•    clearsOnInsertion:设置textView获得焦点,在用户使用虚拟键盘进行输入时,清除之前的文本
_textView.clearsOnInsertion = YES; // clearsOnInsertion,默认为NO

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,122
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,594
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,439
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,210
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,846
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,931