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."; // 設置它顯示的內容input
font:設置textView中文字的字體it
_textView.font = [UIFont fontWithName:@"Arial" size:18.0]; // 設置字體名字和字體大小io
textColor:設置textView中文本的顏色table
_textView.textColor = [UIColor blackColor]; // 設置textview裏面的字體顏色class
textAlignment:設置textView的文本的排列方式sso
_textView.textAlignment = NSTextAlignmentCenter; // textView中的文本排列,默認靠左im
backgroundColor:設置textView的背景顏色developer
_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