ios UITextView设置站位文字

1、很多需求中有需要多行输入,需要站位文字的输入框,这时候最好使用UITextView,下面就新建一个类,继承自UITextView

#import <UIKit/UIKit.h>

@interface PlaceholderTextView : UITextView

/** 占位符*/
@property (copy ,nonatomic) NSString *placeholder;
/** 占位符颜色*/
@property (strong ,nonatomic) UIColor *placeholderColor;
/** 占位符字号*/
@property (strong ,nonatomic) UIFont *placeholderFont;
/** 占位符尺寸*/
@property (assign ,nonatomic) CGRect placeholderRect;


@end
#import "PlaceholderTextView.h"

@interface PlaceholderTextView()<UITextViewDelegate>

@end

@implementation PlaceholderTextView

- (instancetype)initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
//        self.font = [UIFont systemFontOfSize:15];
        self.placeholderColor = [UIColor grayColor];
        // 监听文字改变
        [QFMNotiCenter addObserver:self selector:@selector(textDidChange:) name:UITextViewTextDidChangeNotification object:nil];
    }
    return self;
}


/**
 *绘制站位文字 (每次调用此方法之前,会自动清除掉之前的内容)
 */
- (void)drawRect:(CGRect)rect {
    
    // 如果有文字,直接返回,不绘制站位文字
//    if (self.text.length || self.attributedText.length) return;
    if (self.hasText) return;

    // 处理rect
    rect.origin.x = 3;
    rect.origin.y = 7;
    rect.size.width -= 2*rect.origin.x;
    
    // 文字属性
    NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
    attrs[NSFontAttributeName] = self.placeholderFont;
    attrs[NSForegroundColorAttributeName] = self.placeholderColor;
//    [self.placeholder drawInRect:CGRectMake(3, 7, self.width, self.height) withAttributes:attrs];
    [self.placeholder drawInRect:rect withAttributes:attrs];
    
}

- (void)textDidChange:(UITextView *)textView{
    QFMLOGFUNC;
    [self setNeedsDisplay];
}


- (void)dealloc{
    [QFMNotiCenter removeObserver:self];
}


#pragma mark - **************** 重写setter 防止外部改写属性
- (void)setPlaceholder:(NSString *)placeholder{
    _placeholder = [placeholder copy];
    [self setNeedsDisplay];
}

- (void)setPlaceholderColor:(UIColor *)placeholderColor{
    _placeholderColor = placeholderColor;
    [self setNeedsDisplay];
}

- (void)setPlaceholderFont:(UIFont *)placeholderFont{
    _placeholderFont = placeholderFont;
    [self setNeedsDisplay];
}
- (void)setText:(NSString *)text{
    [super setText:text];
    [self setNeedsDisplay];
}

- (void)setAttributedText:(NSAttributedString *)attributedText{
    [super setAttributedText:attributedText];
    [self setNeedsDisplay];
}
@end

2、第二种方法

.m文件

#import "PlaceholderTextView.h"

@interface PlaceholderTextView()<UITextViewDelegate>

/** 站位文字label*/
@property(weak ,nonatomic)UILabel *placeholderLabel;

@end

@implementation PlaceholderTextView

#pragma mark - **************** 第二种方法

-(UILabel *)placeholderLabel{
    if (!_placeholderLabel) {
        // 添加一个用来显示站位文字的label
        UILabel *placeholderLabel = [[UILabel alloc] init];
//        placeholderLabel.hidden = YES;
        placeholderLabel.x = 4;
        placeholderLabel.y = 7;
        placeholderLabel.numberOfLines = 0;
        [self addSubview:placeholderLabel];
        self.placeholderLabel = placeholderLabel;
    }
    return _placeholderLabel;
}

-(instancetype)initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
        // 竖直方向永远可以拖动
        self.alwaysBounceVertical = YES;
        self.font = [UIFont systemFontOfSize:15];
        // 默认的站位文字颜色
        self.placeholderColor = [UIColor grayColor];
        [QFMNotiCenter addObserver:self selector:@selector(textDidChange) name:UITextViewTextDidChangeNotification object:nil];
    }
    return self;
}

/*
 *更新站位文字尺寸
* */
- (void)updatePlaceholderLabelSize{
    CGSize placeholderSize = CGSizeMake(self.width - 2*self.placeholderLabel.x, MAXFLOAT);
    self.placeholderLabel.size = [self.placeholder boundingRectWithSize:placeholderSize options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:self.font} context:nil].size;

//self.placeholderLabel.width = SCREEN_WIDTH - 2*self.placeholderLabel.x;
  //  [self.placeholderLabel sizeToFit]; 此方法亦可以

}

#pragma mark - **************** 重新setter
-(void)setPlaceholderColor:(UIColor *)placeholderColor{
    _placeholderColor = placeholderColor;
    self.placeholderLabel.textColor = placeholderColor;
}

- (void)setPlaceholder:(NSString *)placeholder{
    _placeholder = [placeholder copy];
    self.placeholderLabel.text = placeholder;
    [self updatePlaceholderLabelSize];
}

- (void)setFont:(UIFont *)font{
    [super setFont:font];
    self.placeholderLabel.font = font;
    [self updatePlaceholderLabelSize];
}

- (void)setText:(NSString *)text{
    [super setText:text];
    [self textDidChange];
}

- (void)setAttributedText:(NSAttributedString *)attributedText{
    [super setAttributedText:attributedText];
    [self textDidChange];
}


- (void)textDidChange{

    self.placeholderLabel.hidden = self.hasText;
}
- (void)dealloc{
    [QFMNotiCenter removeObserver:self];
}


@end

3、第三种方法

#pragma mark - **************** 第三种方法

-(UILabel *)placeholderLabel{
    if (!_placeholderLabel) {
        // 添加一个用来显示站位文字的label
        UILabel *placeholderLabel = [[UILabel alloc] init];
        //        placeholderLabel.hidden = YES;
        placeholderLabel.x = 4;
        placeholderLabel.y = 7;
        placeholderLabel.numberOfLines = 0;
        [self addSubview:placeholderLabel];
        self.placeholderLabel = placeholderLabel;
    }
    return _placeholderLabel;
}

-(instancetype)initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
        // 竖直方向永远可以拖动
        self.alwaysBounceVertical = YES;
        self.font = [UIFont systemFontOfSize:15];
        // 默认的站位文字颜色
        self.placeholderColor = [UIColor grayColor];
        [QFMNotiCenter addObserver:self selector:@selector(textDidChange) name:UITextViewTextDidChangeNotification object:nil];
    }
    return self;
}


- (void)layoutSubviews{
    [super layoutSubviews];
    // 根据textView的宽度计算placeholder的宽度
    self.placeholderLabel.width = self.width - 2*self.placeholderLabel.x;
    [self.placeholderLabel sizeToFit];
    
}

#pragma mark - **************** 重新setter
-(void)setPlaceholderColor:(UIColor *)placeholderColor{
    _placeholderColor = placeholderColor;
    self.placeholderLabel.textColor = placeholderColor;
}

- (void)setPlaceholder:(NSString *)placeholder{
    _placeholder = [placeholder copy];
    self.placeholderLabel.text = placeholder;
    [self setNeedsLayout];
}

- (void)setFont:(UIFont *)font{
    [super setFont:font];
    self.placeholderLabel.font = font;
    [self setNeedsLayout];
}

- (void)setText:(NSString *)text{
    [super setText:text];
    [self textDidChange];
}

- (void)setAttributedText:(NSAttributedString *)attributedText{
    [super setAttributedText:attributedText];
    [self textDidChange];
}


- (void)textDidChange{

    self.placeholderLabel.hidden = self.hasText;
}
- (void)dealloc{
    [QFMNotiCenter removeObserver:self];
}


/**
 * setNeedsDisplay方法:会在恰当的时刻自动调用drawRect方法
 * setNeedsLayout方法:会在恰当的时刻调用layoutSubViews方法
 */
@end

此方法更为严谨

用label设置的一个好处是,站位文字可以拖动

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,090评论 4 62
  • 前段时间,身边的朋友聊起他最近听的小众的民谣,他说自己听不懂,一是没有明白那种音乐的呈现方式,二是没有听明白歌词或...
    惊蛰小白阅读 548评论 0 1
  • 搜索引擎营销是我普遍认为可以让用户主动找上门的一种营销方式。如,我们经常在用百度搜索一些需要解决的问题,一些需要了...
    飞马哥阅读 500评论 0 2
  • 作业本一:思维空性 衣服的空性:我喜欢淑女款式的衣服,有的人喜欢流行款式的衣服,都是对的,衣服是具备空性的,当有观...
    妙莲修行阅读 129评论 0 0
  • 任凭别人调侃我单身是因为没有人喜欢我,无所谓,我自己也会开玩笑说因为自己太差了,不会有人喜欢,或者很郑重其事的说...
    柯家妍阅读 710评论 0 6