UITextView的高度有输入文字高度决定

//1.在.h文件中

#import#define MaxTextViewHeight 80 //限制文字输入的高度

@interface EwenTextView : UIView

//------ 发送文本 -----//

@property (nonatomic,copy) void (^EwenTextViewBlock)(NSString *text);

//------  设置占位符 ------//

- (void)setPlaceholderText:(NSString *)text;

@end

// 2. 在.m文件中

//需要注意的是,demo依赖于第三方库Masonry

#import "EwenTextView.h"

#import "Masonry.h"

#define kScreenBounds ([[UIScreen mainScreen] bounds])

#define kScreenwidth (kScreenBounds.size.width)

#define kScreenheight (kScreenBounds.size.height)

#define UIColorRGB(x,y,z) [UIColor colorWithRed:x/255.0 green:y/255.0 blue:z/255.0 alpha:1.0]

@interface EwenTextView(){

BOOL statusTextView;//当文字大于限定高度之后的状态

NSString *placeholderText;//设置占位符的文字

}

@property (nonatomic, strong) UIView *backGroundView;

@property (nonatomic, strong) UITextView *textView;

@property (nonatomic, strong) UILabel *placeholderLabel;

@property (nonatomic, strong) UIButton *sendButton;

@end

@implementation EwenTextView

- (instancetype)initWithFrame:(CGRect)frame{

self = [super initWithFrame:frame];

if (self) {

[self createUI];

//增加监听,当键盘出现或改变时收出消息

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:)name:UIKeyboardWillShowNotification object:nil];

//增加监听,当键退出时收出消息

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:)name:UIKeyboardWillHideNotification

object:nil];

}

/**

点击 空白区域取消

*/

UITapGestureRecognizer *centerTap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(centerTapClick)];

[self addGestureRecognizer:centerTap];

return self;

}

- (void)createUI{

[self.textView mas_makeConstraints:^(MASConstraintMaker *make) {

make.top.mas_equalTo(6);

make.left.mas_equalTo(5);

make.bottom.mas_equalTo(-6);

make.width.mas_equalTo(kScreenwidth-65);

}];

[self.placeholderLabel mas_makeConstraints:^(MASConstraintMaker *make) {

make.top.mas_equalTo(5);

make.left.mas_equalTo(10);

make.height.mas_equalTo(39);

}];

[self.sendButton mas_makeConstraints:^(MASConstraintMaker *make) {

make.top.mas_equalTo(8);

make.right.mas_equalTo(-5);

make.width.mas_equalTo(50);

}];

}

//暴露的方法

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

placeholderText = text;

self.placeholderLabel.text = placeholderText;

}

//当键盘出现或改变时调用

- (void)keyboardWillShow:(NSNotification *)aNotification

{

self.frame = kScreenBounds;

//获取键盘的高度

NSDictionary *userInfo = [aNotification userInfo];

NSValue *aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];

CGRect keyboardRect = [aValue CGRectValue];

int height = keyboardRect.size.height;

if (self.textView.text.length == 0) {

self.backGroundView.frame = CGRectMake(0, kScreenheight-height-49, kScreenwidth, 49);

}else{

CGRect rect = CGRectMake(0, kScreenheight - self.backGroundView.frame.size.height-height, kScreenwidth, self.backGroundView.frame.size.height);

self.backGroundView.frame = rect;

}

}

//当键退出时调用

- (void)keyboardWillHide:(NSNotification *)aNotification

{

if (self.textView.text.length == 0) {

self.backGroundView.frame = CGRectMake(0, 0, kScreenwidth, 49);

self.frame = CGRectMake(0, kScreenheight-49, kScreenwidth, 49);

}else{

CGRect rect = CGRectMake(0, 0, kScreenwidth, self.backGroundView.frame.size.height);

self.backGroundView.frame = rect;

self.frame = CGRectMake(0, kScreenheight - rect.size.height, kScreenwidth, self.backGroundView.frame.size.height);

}

}

- (void)centerTapClick{

[self.textView resignFirstResponder];

}

#pragma mark --- UITextViewDelegate

- (void)textViewDidChange:(UITextView *)textView{

/**

*  设置占位符

*/

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

self.placeholderLabel.text = placeholderText;

[self.sendButton setBackgroundColor:UIColorRGB(180, 180, 180)];

self.sendButton.userInteractionEnabled = NO;

}else{

self.placeholderLabel.text = @"";

[self.sendButton setBackgroundColor:UIColorRGB(70 , 163, 231)];

self.sendButton.userInteractionEnabled = YES;

}

//---- 计算高度 ---- //

CGSize size = CGSizeMake(kScreenwidth-65, CGFLOAT_MAX);

NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:16],NSFontAttributeName, nil];

CGFloat curheight = [textView.text boundingRectWithSize:size

options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading

attributes:dic

context:nil].size.height;

CGFloat y = CGRectGetMaxY(self.backGroundView.frame);

if (curheight < 19.094) {

statusTextView = NO;

self.backGroundView.frame = CGRectMake(0, y - 49, kScreenwidth, 49);

}else if(curheight < MaxTextViewHeight){

statusTextView = NO;

self.backGroundView.frame = CGRectMake(0, y - textView.contentSize.height-10, kScreenwidth,textView.contentSize.height+10);

}else{

statusTextView = YES;

return;

}

}

#pragma  mark -- 发送事件

- (void)sendClick:(UIButton *)sender{

[self.textView endEditing:YES];

if (self.EwenTextViewBlock) {

self.EwenTextViewBlock(self.textView.text);

}

//---- 发送成功之后清空 ------//

self.textView.text = nil;

self.placeholderLabel.text = placeholderText;

[self.sendButton setBackgroundColor:UIColorRGB(180, 180, 180)];

self.sendButton.userInteractionEnabled = NO;

self.frame = CGRectMake(0, kScreenheight-49, kScreenwidth, 49);

self.backGroundView.frame = CGRectMake(0, 0, kScreenwidth, 49);

}

#pragma mark --- 懒加载控件

- (UIView *)backGroundView{

if (!_backGroundView) {

_backGroundView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kScreenwidth, 49)];

_backGroundView.backgroundColor = UIColorRGB(230, 230, 230);

[self addSubview:_backGroundView];

}

return _backGroundView;

}

- (UITextView *)textView{

if (!_textView) {

_textView = [[UITextView alloc]init];

_textView.font = [UIFont systemFontOfSize:16];

_textView.delegate = self;

_textView.layer.cornerRadius = 5;

[self.backGroundView addSubview:_textView];

}

return _textView;

}

- (UILabel *)placeholderLabel{

if (!_placeholderLabel) {

_placeholderLabel = [[UILabel alloc]init];

_placeholderLabel.font = [UIFont systemFontOfSize:16];

_placeholderLabel.textColor = [UIColor grayColor];

[self.backGroundView addSubview:_placeholderLabel];

}

return _placeholderLabel;

}

- (UIButton *)sendButton{

if (!_sendButton) {

_sendButton = [[UIButton alloc]init];

[_sendButton setBackgroundColor:UIColorRGB(180, 180, 180)];

[_sendButton setTitle:@"发送" forState:UIControlStateNormal];

[_sendButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];

[_sendButton addTarget:self action:@selector(sendClick:) forControlEvents:UIControlEventTouchUpInside];

_sendButton.layer.cornerRadius = 5;

_sendButton.userInteractionEnabled = NO;

[self.backGroundView addSubview:_sendButton];

}

return _sendButton;

}

#pragma mark --- UIScrollViewDelegate

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{

if (statusTextView == NO) {

scrollView.contentOffset = CGPointMake(0, 0);

}else{

}

}

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

推荐阅读更多精彩内容

  • (一)Masonry介绍 Masonry是一个轻量级的布局框架 拥有自己的描述语法 采用更优雅的链式语法封装自动布...
    木易林1阅读 2,323评论 0 3
  • Masonry是一个轻量级的布局框架,拥有自己的描述语法,采用更优雅的链式语法封装自动布局,简洁明了并具有高可读性...
    3dcc6cf93bb5阅读 1,759评论 0 1
  • 一九三零年,东北辽宁,一个破旧的火车站。晋商李茂平穿着朴素的灰马褂,背着一个破布褡裢站在墙角,褡裢里面的东西看起来...
    点兜阅读 811评论 1 5
  • 在青春的似水流年里,总有一些遗憾也总有一些庆幸,幸好我们都还只是孩子,需要的就是在追梦的路上不断的成长。所以我们可...
    余珂阅读 514评论 3 3
  • 将人脑与计算机类比,相信大家都已不再觉得新奇和陌生了。借助这个类比,今天想聊聊影响我们日常行为决策中的一个有趣话题...
    徐彦超阅读 645评论 0 4