IOS開發UI基礎UITextView相關屬性

來源:互聯網
上載者:User

標籤:

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相關屬性

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.