IOS基本控件常用属性及方法(二)---UITextView

1. text: 设置textView中文本
2. font:设置textView中文字的字体
3. textColor:设置textView中文本的颜色
4. textAlignment:设置textView的文本的排列方式
5. backgroundColor:设置textView的背景颜色

    // 设置它显示的内容
    self.YjmTextView.text = @"Now is the time for all good developers to come toserve their country.\n\nNow is the time for all good developers to come toserve their country.";
    // 设置字体名字和字体大小
    self.YjmTextView.font = [UIFont fontWithName:@"Arial" size:18];
    
    //设置TextView中文本的颜色
    self.YjmTextView.textColor = [UIColor blueColor];
    
    //设置TextView中文本的对齐方式
    self.YjmTextView.textAlignment = NSTextAlignmentLeft;
    
    //设置TextView的背景颜色
    self.YjmTextView.backgroundColor = [UIColor lightGrayColor];
运行效果:


6. attributedText:设置默认插入textView的文字
7. inputView:设置从底部弹出的视图
8. inputAccessoryView:设置弹出视图上方的辅助视图

    //设置默认插入TextView的文字
    self.YjmTextView.attributedText = [[NSAttributedString alloc]initWithString:@"attributedText__-abc"];
    
    //设置从底部弹出的视图
    self.YjmTextView.inputView = [[UIDatePicker alloc]init];
    
    //设置弹出视图上方的辅助视图
    self.YjmTextView.inputAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

运行效果:


9. delegate:设置代理
_textView.delegate = self; // 设置代理

10. editable:设置textView是否可被输入
_textView.editable = NO; // textView是否可被输入,默认为YES

11. clearsOnInsertion:设置textView获得焦点,在用户使用虚拟键盘进行输入时,清除之前的文本
_textView.clearsOnInsertion = YES; // clearsOnInsertion,默认为NO

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值