標籤:
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
IOS開發UI基礎UITextView相關屬性