博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
textView 圆角
阅读量:6788 次
发布时间:2019-06-26

本文共 1678 字,大约阅读时间需要 5 分钟。

#import <QuartzCore/QuartzCore.h>

[self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];
    [self.content.layer setBorderColor:[[UIColor grayColor] CGColor]];
    [self.content.layer setBorderWidth:1.0];
     [self.content.layer setCornerRadius:8.0];
     [self.content.layer setMasksToBounds:YES];
    self.content.clipsToBounds = YES;

 

 

 

 

 // 商品标题

    imputFeedBackTextView=[[UITextView alloc] initWithFrame:CGRectMake(20, 100, 280, 130)];

    imputFeedBackTextView.font = [UIFont systemFontOfSize:15];

    imputFeedBackTextView.backgroundColor = [UIColor whiteColor];

    [self.view addSubview:imputFeedBackTextView];

    imputFeedBackTextView.hidden=NO;

    imputFeedBackTextView.delegate = self;

    

    // 添加商品标题placeholder

    labelplaceHorder=[[UILabel alloc]initWithFrame:CGRectMake(25, 105,200,20)];

    labelplaceHorder.text = @"请添加商品描述";

    labelplaceHorder.font = [UIFont systemFontOfSize:15];

    labelplaceHorder.textColor=[UIColor colorWithRed:200/256.0 green:200/256.0 blue:200/256.0 alpha:1];

    //  labelGoodsDescription.enabled = NO;    // 设置为不可用

   

   

    [imputFeedBackTextView.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];

    [imputFeedBackTextView.layer setBorderColor:[[UIColor colorWithRed:0.85 green:0.85 blue:0.85 alpha:1] CGColor]];

    [imputFeedBackTextView.layer setBorderWidth:1.0];

    [imputFeedBackTextView.layer setCornerRadius:6.0];

    [imputFeedBackTextView.layer setMasksToBounds:YES];

    imputFeedBackTextView.clipsToBounds = YES;

     [self.view addSubview:labelplaceHorder];

    

//实现UITextView的代理

 

-(void)textViewDidChange:(UITextView *)textView

{

 

    if (imputFeedBackTextView.text.length == 0) {

        labelplaceHorder.text = @"请添加商品描述";

    }else{

        labelplaceHorder.text = @"";

    }

  

}

转载于:https://www.cnblogs.com/madeininfi/p/3842467.html

你可能感兴趣的文章
spring security中当前用户信息
查看>>
[Golang软件推荐] RSA公私钥加解密(解决Golang私钥加密公钥解密问题)
查看>>
html-meta http-equiv设置网页指定时间跳转
查看>>
python 入门
查看>>
如何防止http请求数据被篡改
查看>>
MyEclipse 2013集成JRebel
查看>>
indexOf()
查看>>
go语言学习
查看>>
tidb 安装
查看>>
phpcms V9.6.0版本整合百度ueditor1.4.3.2,包括水图片上传水印
查看>>
Tiptop GP中Excel的控制方法
查看>>
JavaWeb分页技术总结
查看>>
基于unity框架构造IOC容器
查看>>
Windows更新导致的打印问题
查看>>
Chrome 控制台不完全指南
查看>>
Notification与多线程
查看>>
高可用、高扩展性、负载均衡
查看>>
VIM用法
查看>>
oscache.properties文件配置
查看>>
新建索引的一些原则
查看>>