iOS 自定义一个textView,可做聊天输入框,cell中也可以自适应

前言

项目中经常会用到UITextView,但是系统的textView在限制多行输入的时候会出现问题。(过渡动画很乱)。基于限制多行输入或者cell跟随textView内容自适应的需求,所以自定义一个textView

自定义textView

关于textView的一些摸索,iOS仿微信输入框,限制最大行数,一体键盘(两种思路),这篇文章中有介绍,下面示例会用到。

封装一个可限制多行输入的textView,首先屏蔽掉系统对textView的默认设置_textView.textContainerInset = UIEdgeInsetsZero,屏蔽掉之后可以给textView添加一个上下左右的间距,UIView作为textView的容器。这样在限制多上输入的时候动画过度就会很自然,默认是不限制行数的。

.h接口的配置:

@property(nonatomic,assign)CGFloat v_margin;//竖直方向上下间距 默认为8;
@property(nonatomic,assign)CGFloat h_margin;//水平方向上下间距 默认为0;
@property(nonatomic,assign)NSInteger  initiLine;//初始需要展示的行数 默认为1;
@property(nonatomic,assign)NSInteger maxLine;//最大行数 默认为无穷大;
@property(nonatomic,strong)NSString *placeholder;//占位文字
@property(nonatomic,strong)UIFont *font;//默认为17
@property(nonatomic,assign)CGPoint placePoint;//设置占位符的位置,竖直方向设置v_margin即可  CGPointMake(5, 0);//占位文字的起始位置;

@property(nonatomic,copy)void (^textHeightChangeBlock)(CGFloat height);
textView需要一个默认的初始行数,默认是1,所以后续自定义的输入框是要根据行数来确定高度,随便给高度,动画就很尴尬。

textView已经屏蔽掉了iOS11textView作为UIScrollView子类的处理:

  if (@available(iOS 11.0, *)) {
        self.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    }

关于限制行数的处理:

-(void)textViewDidChange:(UITextView *)textView{
    
    
    //内容高度
    CGFloat contentSizeH = self.textView.contentSize.height;
    
    
    //最大高度
    CGFloat maxHeight = ceil(self.font.lineHeight * self.maxLine);
    
    //初始高度
    CGFloat initiTextViewHeight = ceilf(self.initiLine *self.font.lineHeight);
    if (contentSizeH <= maxHeight) {
        
        if (contentSizeH <= initiTextViewHeight) {
            self.textView.height = initiTextViewHeight;
        }else{
            self.textView.height = contentSizeH;
        }
        
        
    }else{
        self.textView.height = maxHeight;
    }
    
    self.height = self.textView.height + 2 * self.v_margin;
    
    if (self.textHeightChangeBlock) {
        self.textHeightChangeBlock(self.height);
    }
    [textView scrollRangeToVisible:NSMakeRange(textView.selectedRange.location, 1)];
    
    
}
支持约束以及frame配置。

示例1 自定义一体键盘,限制最大行数。

很简单的在xib底部关联一个自定义的textView,需要监测两个通知UIKeyboardWillChangeFrameNotificatioUIKeyboardDidChangeFrameNotification,至于为什么要监听,前面那篇文章有详细说明。补充一点,如果项目中有使用到IQKeyboardManager,需要在当前页面设置IQKeyboardManager不可用,在自定义键盘的时候如果IQKeyboardManager开始,可能会出现导航栏突然消失很多问题,所以关闭掉,监听两个通知即可,改变自定义键盘 底部距离屏幕底部的约束即可,键盘弹出,高于键盘即可。

 [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];
     [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardDidChangeFrame:) name:UIKeyboardDidChangeFrameNotification object:nil];

-(void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    self.isDisappear = NO;
     [IQKeyboardManager sharedManager].enable = NO; //关闭
}
-(void)viewWillDisappear:(BOOL)animated{
    [super viewWillDisappear:animated];
    self.isDisappear = YES;
    [IQKeyboardManager sharedManager].enable = YES; //开启

}
-(void)keyboardWillChangeFrame:(NSNotification *)notification{
    
    NSDictionary *userInfo = notification.userInfo;
    // 动画的持续时间
    double duration = [userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    
    // 键盘的frame
    CGRect keyboardF = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
    //        NSLog(@"%@",NSStyringFromCGRect(keyboardF));
   CGFloat keyboardY = keyboardF.origin.y;
    keyboardH =  keyboardF.size.height;
    
    
    if (!self.isDisappear) {
        [self dealKeyBoardWithKeyboardH:keyboardH keyboardY:keyboardY duration:duration];
    }

}
-(void)keyboardDidChangeFrame:(NSNotification *)notification{
    
    NSDictionary *userInfo = notification.userInfo;
   
    // 动画的持续时间
    double duration = [userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    CGRect keyboardF = [userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
    
    CGFloat keyboardY = keyboardF.origin.y;
    
    keyboardH =  keyboardF.size.height;
    
    if (self.isDisappear) {
         [self dealKeyBoardWithKeyboardH:keyboardH keyboardY:keyboardY duration:duration];
    }
   
    
}
#pragma mark---处理高度---
-(void)dealKeyBoardWithKeyboardH:(CGFloat)keyboardH keyboardY:(CGFloat)keyboardY duration:(CGFloat)duration{
    
    if (!self.isDisappear) {
        [UIView animateWithDuration:duration animations:^{
            // 工具条的Y值 == 键盘的Y值 - 工具条的高度
            
            if (keyboardY >= Device_Height) {
                self.bottomH.constant = 0;
            }else
            {
                self.bottomH.constant = keyboardH;
            }

        }];
    }else{
        if (keyboardY >= Device_Height) {
            self.bottomH.constant = 0;
        }else
        {
            self.bottomH.constant = keyboardH;
        }
    }
    
}
如果在键盘弹出的时候同时textView需要自动增长,那么也需要设置如下:
 self.textView.textHeightChangeBlock = ^(CGFloat height) {
        
        weakSelf.textH.constant = height;
        weakSelf.bottomH.constant = keyboardH;
        [weakSelf.view updateConstraints];
        [weakSelf.view updateConstraintsIfNeeded];
        [UIView animateWithDuration:0.25 animations:^{
            [weakSelf.view layoutIfNeeded];
        }];
    };

示例2 cell跟随textView自适应,textView也可以限制多行

需要做的也很简单,在textView自动增长的地方,处理如下:(当前textView不能失去焦点)

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
    
    self.textView.initiLine = 1;
    self.textView.maxLine = 3;
    self.textView.placeholder= @"请输入";
    
    
    self.textViewH.constant = self.textView.height;
    
    LXWS(weakSelf);
    self.textView.textHeightChangeBlock = ^(CGFloat height) {
        
        weakSelf.textViewH.constant = height;
        
        [weakSelf.contentView updateConstraints];
        [weakSelf.contentView updateConstraintsIfNeeded];
        [UIView animateWithDuration:0.25 animations:^{
            [weakSelf.contentView layoutIfNeeded];
        }];
        UITableView *tableView = [weakSelf tableView];
        [tableView beginUpdates];
        [tableView endUpdates];
      
    };

补充
最近发现使用中发现示例2 结合IQKeyboardManager使用的时候出现的一点问题,在换行的时候输入框的位置并没有变化,只有当键盘重新定位的时候才可以,如果能够在换行的时候使键盘重新定位就好了。(2018年9月19日)
看一个IQKeyboardManager属性:

/**
 Refreshes textField/textView position if any external changes is explicitly made by user.
 */
- (void)reloadLayoutIfNeeded;

刚刚好可以在换行的时候重新进行键盘定位。
对于示例2 我们可以添加一行代码:

 self.textView.textHeightChangeBlock = ^(CGFloat height) {
        
        weakSelf.textViewH.constant = height;
        
        IQKeyboardManager *manager =[IQKeyboardManager sharedManager];
        //当输入框位置变动时刷新位置
        [manager reloadLayoutIfNeeded];
        [weakSelf.contentView updateConstraints];
        [weakSelf.contentView updateConstraintsIfNeeded];
        [UIView animateWithDuration:0.25 animations:^{
            [weakSelf.contentView layoutIfNeeded];
        }];
        UITableView *tableView = [weakSelf tableView];
        [tableView beginUpdates];
        [tableView endUpdates];
      
    };

效果图:
textView.gif

demo: LXCustomTextView

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

推荐阅读更多精彩内容