首页 > 其他 > 详细

textView 圆角

时间:2014-07-14 21:58:58      阅读:391      评论:0      收藏:0      [点我收藏+]

#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 = @"";

    }

  

}

textView 圆角,布布扣,bubuko.com

textView 圆角

原文:http://www.cnblogs.com/madeininfi/p/3842467.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!