UITextView

来源:互联网 发布:js中删除数组中的元素 编辑:程序博客网 时间:2024/06/05 14:20

UITextView

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

这里写图片描述

声明:这是之前朋友的资料,可能比较旧,在此仅仅做个人备份,大家参考看,如果涉及侵权了联系我删除。

0 0
原创粉丝点击