_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.textColor = [UIColor blackColor]; // 设置textview里面的字体颜色
_textView.textAlignment = NSTextAlignmentCenter; // textView中的文本排列,默认靠左
_textView.backgroundColor = [UIColor grayColor]; // 设置浅灰色的背景色,默认为白色
_textView.delegate = self; // 设置代理
_textView.editable = NO; // textView是否可被输入,默认为YES
_textView.attributedText = [[NSAttributedString alloc]initWithString:@"attributedText__-abc"]; // 可以方便将文本插入到UITextView中。
_textView.inputView = [[UIDatePicker alloc]init]; // 弹出视图,默认为键盘
_textView.inputAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure]; // 弹出视图上方的辅助视图
_textView.clearsOnInsertion = YES; // clearsOnInsertion,默认为NO
原文:http://www.cnblogs.com/741162830qq/p/4767104.html