短视频APP源码中系统评论功能是如何实现的

简介: 短视频系统中评论功能的分量在短视频功能里可谓是举足轻重,下面简单介绍下,短视频系统中的评论功能的实现方式:评论分为对视频的评论和对评论的回复两部分:对于评论列表大家再熟悉不过了,就是一个tableview罢了,相信刚入门的技术也可以实现。

短视频系统中评论功能的分量在短视频功能里可谓是举足轻重,下面简单介绍下,短视频系统中的评论功能的实现方式:
评论分为对视频的评论和对评论的回复两部分:
对于评论列表大家再熟悉不过了,就是一个tableview罢了,相信刚入门的技术也可以实现。技术的关键在于对评论的回复,我们使用了tableview的嵌套,即:在评论的cell中创建回复的tablview,使用代理功能来实现对数据和UI界面的精准控制,下面是实现的具体方式:

_contentL.attributedText = attstr;
    if ([_model.replys intValue] > 0) {
        CGFloat HHHH = 0.0;
        for (NSDictionary *dic in _replyArray) {
            detailmodel *model = [[detailmodel alloc]initWithDic:dic];
            HHHH += model.rowH;
        }
        if ([_model.replys intValue] == 1) {
            _tableHeight.constant = HHHH;
            _replyTable.tableFooterView = nil;
        }else{
//            if (!_replyBottomView) {
                NSLog(@"===%d",page);
                _model.replayView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 20)];
                _model.replayView.backgroundColor = CellRow_Cor;
                //回复
                UIButton * replyBtn = [UIButton buttonWithType:0];
                replyBtn.backgroundColor = [UIColor clearColor];
                replyBtn.titleLabel.textAlignment = NSTextAlignmentLeft;
                replyBtn.titleLabel.font = [UIFont systemFontOfSize:12];
                [replyBtn addTarget:self action:@selector(makeReply:) forControlEvents:UIControlEventTouchUpInside];
                BOOL showNum = NO;
                if (_model.replyList.count==1) {
                    showNum = YES;
                }
                [self changeMoreShowText:showNum andBtn:replyBtn];
                NSMutableAttributedString *attstr2 = [[NSMutableAttributedString alloc]initWithString:@"收起"];
                [attstr2 addAttribute:NSForegroundColorAttributeName value:RGB_COLOR(@"#969696", 1) range:NSMakeRange(0, 2)];
                NSTextAttachment *attach2 = [[NSTextAttachment alloc] init];
                UIImage *image2 = [UIImage imageNamed:@"relpay_三角上.png"];
                NSAttributedString *imageString2;
                if (image2) {
                    attach2.image = image2;
                    attach2.bounds = CGRectMake(0, -4, 15, 15);
                    imageString2 =   [NSAttributedString attributedStringWithAttachment:attach2];
                    [attstr2 appendAttributedString:imageString2];
                }
                [replyBtn setAttributedTitle:attstr2 forState:UIControlStateSelected];
                [_model.replayView addSubview:replyBtn];
                //记录按钮属性
                _model.replyMoreBtn = replyBtn;
                [replyBtn mas_makeConstraints:^(MASConstraintMaker *make) {
                    make.top.bottom.equalTo(_model.replayView);
                    make.left.equalTo(_model.replayView).offset(26);
                }];       
                if ((_model.replyList.count % 10 != 0
                     && _model.replyList.count % 10 != 1
                     && _model.replyList.count% 10 != 3)
                     || ((_model.replyList.count+1)== [_model.replys intValue])
                    ) {
                    replyBtn.selected = YES;
                }else{
                    replyBtn.selected = NO;
                }
            _replyTable.tableFooterView = _model.replayView;
            _tableHeight.constant = HHHH+20;
        }
    }else{
        _tableHeight.constant = 0;
        _replyTable.tableFooterView = nil;
    }
- (void)makeReply:(UIButton *)replyBtn{
    if (replyBtn.selected) {
        NSDictionary *dic = [_replyArray firstObject];
        [_replyArray removeAllObjects];
        [_replyArray addObject:[dic mutableCopy]];
        _model.replyList = [_replyArray mutableCopy];
//        [_replyTable reloadData];
        replyBtn.selected = NO;
        [self changeMoreShowText:YES andBtn:replyBtn];
        [self.delegate reloadCurCell:_model andIndex:_curIndex andReplist:_replyArray needRefresh:YES];
    }else{     
        if (_replyArray.count == 1) {
            page = 1;
        }else{
            page ++;
        }
        [self requestData:NO andBtn:replyBtn];
    }
}
-(void)changeMoreShowText:(BOOL)isFirstPage andBtn:(UIButton *)replyBtn{
    NSString *tempStr;
    if (isFirstPage) {
        tempStr  = [NSString stringWithFormat:@"展开%d条回复",[_model.replys intValue]>=2?([_model.replys intValue]-1):(1)];
    }else{
        tempStr  = [NSString stringWithFormat:@"展开更多回复"];
    }
    NSMutableAttributedString *attstr = [[NSMutableAttributedString alloc]initWithString:tempStr];
    [attstr addAttribute:NSForegroundColorAttributeName value:RGB_COLOR(@"#969696", 1) range:NSMakeRange(0, tempStr.length)];
    NSTextAttachment *attach = [[NSTextAttachment alloc] init];
    UIImage *image = [UIImage imageNamed:@"relpay_三角下.png"];
    NSAttributedString *imageString;
    if (image) {
        attach.image = image;
        attach.bounds = CGRectMake(0, -4, 15, 15);
        imageString =   [NSAttributedString attributedStringWithAttachment:attach];
        [attstr appendAttributedString:imageString];
    }
    [replyBtn setAttributedTitle:attstr forState:0];
}

看了上述短视频APP源码评论功能的方法介绍,大家是不是眼前一亮?是不是豁然开朗?关于更多短视频系统功能的介绍可以关注我们的账号,我们会持续更新关于短视频功能介绍。

目录
相关文章
|
8天前
|
移动开发 小程序
仿青藤之恋社交交友软件系统源码 即时通讯 聊天 微信小程序 App H5三端通用
仿青藤之恋社交交友软件系统源码 即时通讯 聊天 微信小程序 App H5三端通用
35 3
|
26天前
|
监控 安全 开发者
山东布谷科技:关于直播源码|语音源码|一对一直播源码提交App Store的流程及重构经验
分享提交直播源码,一对一直播源码,语音源码到Appstore的重构经验!
|
28天前
|
NoSQL 应用服务中间件 PHP
布谷一对一直播源码服务器环境配置及app功能
一对一直播源码阿里云服务器环境配置及要求
|
27天前
|
小程序 数据挖掘 UED
开发1个上门家政小程序APP系统,都有哪些功能?
在快节奏的现代生活中,家政服务已成为许多家庭的必需品。针对传统家政服务存在的问题,如服务质量不稳定、价格不透明等,我们历时两年开发了一套全新的上门家政系统。该系统通过完善信用体系、提供奖励机制、优化复购体验、多渠道推广和多样化盈利模式,解决了私单、复购、推广和盈利四大痛点,全面提升了服务质量和用户体验,旨在成为家政行业的领导者。
|
24天前
|
机器人
布谷直播App系统源码开发之后台管理功能详解
直播系统开发搭建管理后台功能详解!
|
程序员 开发工具 开发者
短视频APP开发者告诉你:苹果手机加上它也能用美颜
如果苹果手机加入了它,微信也能自带美颜,那么,“它”是什么呢?
|
开发者
短视频APP开发者们群雄逐鹿,谁能领先
,那么多短视频APP群雄逐鹿,为何抖音遥遥领先?看完这篇分析,或许你能有所感悟。
|
开发者 数据安全/隐私保护
解决了,短视频APP开发者最头疼的苹果上架相关问题
在短视频APP开发者们把软件开发完毕后,APP就要开始上架了,在APP上架苹果商店时,我们需要一个苹果开发者账号,本文主要为大家讲解苹果开发者账号的申请流程是什么,很多人都不会,特此写下这篇文章,希望能为一筹莫展的朋友提供一些帮助。
|
2月前
|
JSON 小程序 JavaScript
uni-app开发微信小程序的报错[渲染层错误]排查及解决
uni-app开发微信小程序的报错[渲染层错误]排查及解决
555 7
|
2月前
|
小程序 JavaScript 前端开发
uni-app开发微信小程序:四大解决方案,轻松应对主包与vendor.js过大打包难题
uni-app开发微信小程序:四大解决方案,轻松应对主包与vendor.js过大打包难题
676 1