自定义聊天页面

初始化TableView
- (UITableView *)chatListTB{
    if (!_chatListTB) {
        _chatListTB = [[UITableView alloc] initWithFrame:CGRectMake(0,0, ScreenWidth, ScreenHeight  - BottomViewHeight  - kBottomSafeHeight  -  kNAVBAR_HEIGHT)];
        _chatListTB.backgroundColor = RGBA(235, 234, 229, 1);
        _chatListTB.dataSource = self ;
        _chatListTB.delegate = self ;
        _chatListTB.tableFooterView = [[UIView alloc]init];
        _chatListTB.separatorStyle = UITableViewCellSeparatorStyleNone ;
        _chatListTB.estimatedRowHeight = 400;
        _chatListTB.estimatedSectionHeaderHeight = 0;
        _chatListTB.estimatedSectionFooterHeight = 0;
        [_chatListTB registerClass:[DGEnterpriseChatListCell class] forCellReuseIdentifier:@"DGEnterpriseChatListCell"];
        [_chatListTB addGestureRecognizer:[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(hiddenKeyBoard)]];
        _chatListTB.showsVerticalScrollIndicator = NO ;
        self.view.backgroundColor = RGBA(246, 246, 246, 1);
    }
    return _chatListTB;
}
初始化输入框
- (void)initBottomView{
    //输入框背景
    UIView *bgView = [[UIView alloc] initWithFrame:CGRectMake(0, ScreenHeight  - BottomViewHeight - kBottomSafeHeight - kNAVBAR_HEIGHT, ScreenWidth, BottomViewHeight)];
    bgView.tag = 100;
    bgView.backgroundColor = RGBA(246, 246, 246, 1);
    bgView.layer.masksToBounds = YES;
    [self.view addSubview:bgView];
    self.bgView = bgView;
    //输入框
    UITextView *textView = [[UITextView alloc] init];
    textView.layer.borderColor = [RGBA(233, 233, 233, 1) CGColor];
    textView.layer.borderWidth = 0.5 ;
    textView.layer.cornerRadius = 2 ;
    textView.layer.masksToBounds = YES ;
    textView.delegate = self;
    textView.tag = 101;
    textView.returnKeyType = UIReturnKeySend;
    textView.font = FontSystemSize(16);
    [bgView addSubview:textView];
    self.chatTextView = textView ;
    [textView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerY.mas_equalTo(bgView.mas_centerY);
        make.left.mas_equalTo(16);
        make.right.mas_equalTo(-16);
        make.height.mas_equalTo(36);
    }];
  }
监听键盘事件
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(chatkeyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(chatkeyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
弹出键盘
-(void)chatkeyboardWillShow:(NSNotification *)aNotification{
    CGRect keyboardFrame = [aNotification.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
     CGFloat keyboardY = keyboardFrame.origin.y;
     CGFloat duration = [aNotification.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
    [UIView animateWithDuration:duration delay:0 options:[aNotification.userInfo[UIKeyboardAnimationCurveUserInfoKey] integerValue] animations:^{
        self.bgView.frame = CGRectMake(0, keyboardY - self.bgView.height - kNAVBAR_HEIGHT, ScreenWidth, self.bgView.height);
        self.isScrollToBottom = YES ;
        [self changeTableViewFrame:self.bgView.frame.origin.y];
    } completion:nil];
}
收起键盘
- (void)chatkeyboardWillHide:(NSNotification *)aNotification{
    [UIView animateWithDuration:1 animations:^{
        self.bgView.frame = CGRectMake(0, ScreenHeight - BottomViewHeight - kBottomSafeHeight - kNAVBAR_HEIGHT, ScreenWidth, BottomViewHeight);
    [self changeTableViewFrame:self.bgView.frame.origin.y];
    }];
}
改变TableView的Frame
//改变tableview的frame
- (void)changeTableViewFrame:(CGFloat)minY{
    if (self.chatMessageArray.count > 0) {
        NSIndexPath *lastIndex = [NSIndexPath indexPathForRow:self.chatMessageArray.count -1 inSection:0];
        CGRect rect = [self.chatListTB rectForRowAtIndexPath:lastIndex];
        CGFloat lastMaxY = rect.origin.y + rect.size.height ;
        NSLog(@"lastMaxY = %f,minY = %f",lastMaxY,minY);

        //如果最后一个cell的最大值大于tableview的高度
        if (lastMaxY <= self.chatListTB.frame.size.height) {
            if (lastMaxY >= minY) {
                self.chatListTB.y = minY - lastMaxY;
            }else{
                self.chatListTB.y = 0 ;
            }
        }else{
            self.chatListTB.y += minY - self.chatListTB.maxY;
        }
    } 
    if (self.isScrollToBottom == YES) {
        [self scrollToBootom];
        self.isScrollToBottom = NO ;
    }   
}
消息滚动到最后一行
- (void)scrollToBootom{
    dispatch_async(dispatch_get_main_queue(), ^{//回到主线程滚动
        if (self.chatMessageArray.count > 0) {
            [self.chatListTB scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:MAX(0, self.chatMessageArray.count - 1) inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:NO];
            if (self.chatListTB.contentSize.height -self.chatListTB.bounds.size.height > 0) {//解决不满屏滚动的问题
                [self.chatListTB setContentOffset:CGPointMake(0, self.chatListTB.contentSize.height -self.chatListTB.bounds.size.height) animated:YES];
            }
        }
    });
}
主线程改变Frame
dispatch_async(dispatch_get_main_queue(), ^{
     [self changeTableViewFrame:self.bgView.frame.origin.y];
 });
五分钟内不展示时间
 if (indexPath.row == 0) {//第一条展示时间
            messageModel.showMessageTime = YES ;
        }else{
            DGEnterpriseChatMessageModel *preModel = self.chatMessageArray[indexPath.row - 1];
            BOOL inFiveMinutes = [self isFiveMinutesWithTheBeginTime:preModel.createTime withEndTime:messageModel.createTime];
            if (inFiveMinutes == YES) {//5分钟内不展示时间
                messageModel.showMessageTime = NO ;
            }else{
                messageModel.showMessageTime = YES ;
            }
        }
对比两个时间戳
- (BOOL)isFiveMinutesWithTheBeginTime:(long long)beginTime withEndTime:(long long)endTime{
    NSTimeInterval timer1 = beginTime / 1000.0;
    NSTimeInterval timer2 = endTime / 1000.0;

    NSDateFormatter* formatter = [[NSDateFormatter alloc] init];
    [formatter setDateStyle:NSDateFormatterMediumStyle];
    [formatter setTimeStyle:NSDateFormatterShortStyle];
    [formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];

    NSDate* date = [NSDate dateWithTimeIntervalSince1970:timer1];
    NSDate *date2 = [NSDate dateWithTimeIntervalSince1970:timer2];

    // 日历对象(方便比较两个日期之间的差距)
    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSCalendarUnit unit =NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond;
    NSDateComponents *cmps = [calendar components:unit fromDate:date toDate:date2 options:0];

    // 获得某个时间的年月日时分秒
//    NSLog(@"差值%ld天,%ld小时%ld分%ld秒",cmps.day ,cmps.hour, cmps.minute,cmps.second);
    if (cmps.day == 0 && cmps.hour == 0 && cmps.minute < 5 ) {
//        NSLog(@"同一天并且是5分钟内的消息");
        return YES;
    }else{
//        NSLog(@"不是5分钟内的消息");
        return NO;
    }
}
时间显示内容
-(NSString *)getDateDisplayString:(long long) miliSeconds{
    NSTimeInterval tempMilli = miliSeconds;
    NSTimeInterval seconds = tempMilli/1000.0;
    NSDate *myDate = [NSDate dateWithTimeIntervalSince1970:seconds];
    
    NSCalendar *calendar = [ NSCalendar currentCalendar ];
    int unit = NSCalendarUnitDay | NSCalendarUnitMonth |  NSCalendarUnitYear ;
    NSDateComponents *nowCmps = [calendar components:unit fromDate:[ NSDate date ]];
    NSDateComponents *myCmps = [calendar components:unit fromDate:myDate];
    
    NSDateFormatter *dateFmt = [[NSDateFormatter alloc ] init ];
    
    //2. 指定日历对象,要去取日期对象的那些部分.
    NSDateComponents *comp =  [calendar components:NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay|NSCalendarUnitWeekday fromDate:myDate];
    
    if (nowCmps.year != myCmps.year) {
        dateFmt.dateFormat = @"yyyy-MM-dd HH:mm";
    } else {
        if (nowCmps.day==myCmps.day) {
            dateFmt.dateFormat = @"HH:mm";
            
        } else if((nowCmps.day-myCmps.day)==1) {
            dateFmt.dateFormat = @"昨天 HH:mm";
        } else {
            if ((nowCmps.day-myCmps.day) <=7) {
                switch (comp.weekday) {
                    case 1:
                        dateFmt.dateFormat = @"星期日 HH:mm";
                        break;
                    case 2:
                        dateFmt.dateFormat = @"星期一 HH:mm";
                        break;
                    case 3:
                        dateFmt.dateFormat = @"星期二 HH:mm";
                        break;
                    case 4:
                        dateFmt.dateFormat = @"星期三 HH:mm";
                        break;
                    case 5:
                        dateFmt.dateFormat = @"星期四 HH:mm";
                        break;
                    case 6:
                        dateFmt.dateFormat = @"星期五 HH:mm";
                        break;
                    case 7:
                        dateFmt.dateFormat = @"星期六 HH:mm";
                        break;
                    default:
                        break;
                }
            }else {
                dateFmt.dateFormat = @"MM-dd HH:mm";
            }
        }
    }
    return [dateFmt stringFromDate:myDate];
}

注意点:

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

推荐阅读更多精彩内容