美文网首页
iOS 基本控件之UITextView的基本用法

iOS 基本控件之UITextView的基本用法

作者: 丶逐渐 | 来源:发表于2017-12-27 09:49 被阅读1766次

// 设置它显示的内容

_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."; 

// 设置字体名字和字体大小

_textView.font = [UIFont fontWithName:@"Arial" size:18.0]; 

// 设置textview里面的字体颜色

_textView.textColor = [UIColor blackColor]; 

// textView中的文本排列,默认靠左

_textView.textAlignment = NSTextAlignmentCenter; 

// 设置浅灰色的背景色,默认为白色

_textView.backgroundColor = [UIColor grayColor]; 

// 设置代理

_textView.delegate = self; 

 // textView是否可被输入,默认为YES

_textView.editable = NO;

// 可以方便将文本插入到UITextView中。

_textView.attributedText = [[NSAttributedString alloc]initWithString:@"attributedText__-abc"]; 

// 弹出视图,默认为键盘

_textView.inputView = [[UIDatePicker alloc]init]; 

// 弹出视图上方的辅助视图

_textView.inputAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure]; 

// clearsOnInsertion,默认为NO,清除之前输入的文本

_textView.clearsOnInsertion = YES; 

相关文章

网友评论

      本文标题:iOS 基本控件之UITextView的基本用法

      本文链接:https://www.haomeiwen.com/subject/zuvygxtx.html