textView实现placehodle

.H文件里面需要实现:

#import <UIKit/UIKit.h>

@interface UIPHTextView : UITextView

{

    NSString *placeholder;

    UIColor *placeholderColor;

    @private

    UILabel *placeHolderLabel;

}

@property(nonatomic, retain) UILabel *placeHolderLabel;

@property(nonatomic, retain) NSString *placeholder;

@property(nonatomic, retain) UIColor *placeholderColor;

-(void)textChanged:(NSNotification*)notification;

@end


.M需要实现:

#import "UIPHTextView.h"

@implementation UIPHTextView

- (instancetype)init{

    self = [super init];

    if (self) {

        [super awakeFromNib];

        [self setPlaceholder:@""];

        [self setPlaceholderColor:[UIColor lightGrayColor]];

        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textChanged:) name:UITextViewTextDidChangeNotification object:nil];

    }

    return self;

}

- (id)initWithFrame:(CGRect)frame

{

    if( (self = [super initWithFrame:frame]) )

    {

        [self setPlaceholder:@""];

        [self setPlaceholderColor:[UIColor lightGrayColor]];

        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textChanged:) name:UITextViewTextDidChangeNotification object:nil];

    }

    return self;

}

- (void)textChanged:(NSNotification *)notification

{

    if([[self placeholder] length] == 0)

    {

        return;

    }

    if([[self text] length] == 0)

    {

        [[self viewWithTag:999] setAlpha:1];

    }

    else

    {

        [[self viewWithTag:999] setAlpha:0];

    }

}

- (void)setText:(NSString *)text {

    

    [super setText:text];

    [self textChanged:nil];

}

- (void)drawRect:(CGRect)rect

{

    if( [[self placeholder] length] > 0 )

    {

        if ( placeHolderLabel == nil )

        {

            placeHolderLabel = [[UILabel alloc] initWithFrame:CGRectMake(8,8,self.bounds.size.width - 16,0)];

            placeHolderLabel.lineBreakMode = UILineBreakModeWordWrap;

            placeHolderLabel.numberOfLines = 0;

            placeHolderLabel.font = [UIFont systemFontOfSize:14];

            placeHolderLabel.backgroundColor = [UIColor clearColor];

            placeHolderLabel.textColor = self.placeholderColor;

            placeHolderLabel.alpha = 0;

            placeHolderLabel.tag = 999;

            [self addSubview:placeHolderLabel];

        }

        placeHolderLabel.text = self.placeholder;

        [placeHolderLabel sizeToFit];

        [self sendSubviewToBack:placeHolderLabel];

    }

    if( [[self text] length] == 0 && [[self placeholder] length] > 0 )

    {

        [[self viewWithTag:999] setAlpha:1];

    }    

    [super drawRect:rect];

}

@end


ViewController.m里面需要实现:

#import "ViewController.h"

#import "UIPHTextView.h"

@interface ViewController ()<UITextViewDelegate>

{

    UIView *_bgView;

    UIPHTextView *_textView;

}

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    [self _createView];

}

- (void)_createView{

    if (_bgView == nil) {

        _bgView = [[UIView alloc]initWithFrame:CGRectMake(0, 10, self.view.frame.size.width, 200)];

        _bgView.backgroundColor = [UIColor greenColor];

        [self.view addSubview:_bgView];

    }

    _textView = [[UIPHTextView alloc] initWithFrame:CGRectMake(5, 5, self.view.frame.size.width - 10, 200 - 85)];

    _textView.placeholder = @"说点什么...";

    _textView.font = [UIFont systemFontOfSize:15];

    _textView.delegate = self;

    _textView.showsVerticalScrollIndicator = NO;

    _textView.placeholderColor = [UIColor grayColor];

    [_bgView addSubview:_textView];

}

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

@end




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值