| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570 |
- //
- // commCell.m
- // yunbaolive
- //
- // Created by Boom on 2018/12/17.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import "commCell.h"
- #import "commDetailCell.h"
- #import "detailmodel.h"
- #import "YBCenterVC.h"
- @interface commCell ()<detailDelegate>
- {
- UIView *topview;
- BOOL isLandScreen;
- }
- @property (nonatomic,strong) NSURL *anImgUrl;
- @end
- @implementation commCell{
- int page;
- }
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- self.contentView.backgroundColor = [UIColor clearColor];
- page = 1;
- _authorL.text = YZMsg(@"作者");
- //长按
- UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPress:)];
- [_replyTable addGestureRecognizer:longPress];
-
- }
- -(void)longPress:(UILongPressGestureRecognizer*)longPressGesture {
- if (_replyArray.count <= 0) {
- return;
- }
- if (_delegate && [_delegate respondsToSelector:@selector(longPressing)] && [_toolTextView isFirstResponder]) {
- [_delegate longPressing];
- return;
- }
- commDetailCell *cell;
- if (longPressGesture.state == UIGestureRecognizerStateBegan) {
- CGPoint point = [longPressGesture locationInView:_replyTable];
- NSIndexPath *currentIndexPath = [_replyTable indexPathForRowAtPoint:point];
- if (currentIndexPath) {
- cell = [_replyTable cellForRowAtIndexPath:currentIndexPath];
- }
- cell.longPressView.backgroundColor = RGB_COLOR(@"#ffffff", 0.1);
- [self showActionSheet:currentIndexPath model:cell.model];
- }
- if (longPressGesture.state == UIGestureRecognizerStateChanged || longPressGesture.state == UIGestureRecognizerStateEnded) {
- CGPoint point = [longPressGesture locationInView:_replyTable];
- NSIndexPath *currentIndexPath = [_replyTable indexPathForRowAtPoint:point];
- if (currentIndexPath) {
- cell = [_replyTable cellForRowAtIndexPath:currentIndexPath];
- }
- cell.longPressView.backgroundColor = UIColor.clearColor;
- }
-
- }
- -(void)showActionSheet:(NSIndexPath*)indexPath model:(detailmodel *)dModel{
-
- if ([[Config getOwnID] intValue]<=0 && self.comCellEvent) {
- self.comCellEvent();
- return;
- }
-
- NSDictionary *subdic = _replyArray[indexPath.row];
- NSDictionary *userinfo = [subdic valueForKey:@"userinfo"];
- BOOL isVoice = [dModel.isvoice boolValue];
- YBWeakSelf;
- RKActionSheet *sheet = [[RKActionSheet alloc]initWithTitle:@""];
- if (!isVoice) {
- [sheet addActionWithType:RKSheet_Default andTitle:YZMsg(@"复制") complete:^{
- dispatch_async(dispatch_get_main_queue(), ^{
- UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
- pasteboard.string = [NSString stringWithFormat:@"@%@:%@",dModel.user_nickname,dModel.content];
- [MBProgressHUD showPop:YZMsg(@"复制成功")];
- });
- }];
- }
- BOOL haveDel = NO;
- if ([_authorID isEqual:[Config getOwnID]] || [minstr([userinfo valueForKey:@"id"]) isEqual:[Config getOwnID]]) {
- haveDel = YES;
- [sheet addActionWithType:RKSheet_Default andTitle:YZMsg(@"删除") complete:^{
- [weakSelf delComments:subdic index:indexPath];
- }];
- }
- if (!isVoice || haveDel) {
- [sheet addActionWithType:RKSheet_Cancle andTitle:YZMsg(@"取消") complete:^{
- }];
- [sheet showSheet];
- }
-
- }
- #pragma mark - 删除评论接口
- -(void)delComments:(NSDictionary *)subdic index:(NSIndexPath *)indexPath{
- NSString *commentid = minstr([subdic valueForKey:@"id"]);
- NSDictionary *userinfo = [subdic valueForKey:@"userinfo"];
- NSString *commentUid = minstr([userinfo valueForKey:@"id"]);
- [MBProgressHUD showMessage:@""];
- [YBNetworking postWithUrl:@"Video.delComments" Dic:@{@"videoid":_videoid,@"commentid":commentid,@"commentuid":commentUid} Suc:^(int code, id info, NSString *msg) {
- [MBProgressHUD hideHUD];
- [MBProgressHUD showPop:msg];
- if (code == 0) {
- [self requestData:YES andBtn:_model.replyMoreBtn];
- }
- } Fail:^(id fail) {
- [MBProgressHUD hideHUD];
- }];
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- -(void)setAuthorID:(NSString *)authorID {
- _authorID = authorID;
- }
- - (NSURL *)anImgUrl{
- if (!_anImgUrl) {
- _anImgUrl = [[NSBundle mainBundle] URLForResource:@"voice_pinglun" withExtension:@"gif"];
- }
- return _anImgUrl;
- }
- - (void)setModel:(commentModel *)model{
- _model = model;
- _authorL.hidden = YES;
- if ([_authorID isEqual:_model.ID]) {
- _authorL.hidden = NO;
- }
- if ([_model.isvoice isEqual:@"1"]) {
- _voiceViewHeight.constant = 20;
- _voiceView.hidden = NO;
- _animationView.hidden = YES;
- _animationView.yy_imageURL = self.anImgUrl;
- _voiceTimeL.text = [NSString stringWithFormat:@"%@\"",model.voiceTime];
- }else{
- _voiceViewHeight.constant = 0;
- _voiceView.hidden = YES;
- }
- NSLog(@"_replyArray=%@",_model.replyList);
- _replyArray = _model.replyList.mutableCopy;
- [_iconImgView sd_setImageWithURL:[NSURL URLWithString:_model.avatar_thumb]];
- _nameL.text = _model.user_nickname;
- // _contentL.text = _model.content;
- _zanNumL.text = _model.likes;
- if ([_model.islike isEqual:@"1"]) {
- [_zanBtn setImage:[UIImage imageNamed:@"likecomment-click"] forState:0];
- _zanNumL.textColor = Pink_Cor;
- }else{
- [_zanBtn setImage:[UIImage imageNamed:@"likecomment"] forState:0];
- _zanNumL.textColor = RGB_COLOR(@"#828282", 1);
- }
- //匹配表情文字
- NSArray *resultArr = [PublicObj machesWithPattern:emojiPattern andStr:_model.content];
- if (!resultArr) return;
- NSUInteger lengthDetail = 0;
- NSMutableAttributedString *attstr = [[NSMutableAttributedString alloc]initWithString:_model.content];
- //遍历所有的result 取出range
- for (NSTextCheckingResult *result in resultArr) {
- //取出图片名
- NSString *imageName = [_model.content substringWithRange:NSMakeRange(result.range.location, result.range.length)];
- if ([lagType isEqual:EN]) {
- if ([imageName isEqual:@"[互粉]"] ||
- [imageName isEqual:@"[关注]"] ||
- [imageName isEqual:@"[粉]"] ||
- [imageName isEqual:@"[给力]"]) {
- imageName = [imageName stringByAppendingFormat:@"_en"];
- }
- }
-
- NSLog(@"--------%@",imageName);
- NSTextAttachment *attach = [[NSTextAttachment alloc] init];
- UIImage *emojiImage = [UIImage imageNamed:imageName];
- NSAttributedString *imageString;
- if (emojiImage) {
- /*
- attach.image = emojiImage;
- attach.bounds = CGRectMake(0, -2, 15, 15);
- imageString = [NSAttributedString attributedStringWithAttachment:attach];
- */
- UIImageView *imageV = [[UIImageView alloc] init];
- imageV.frame = CGRectMake(0, -2, 15, 15);
- imageV.image = emojiImage;
- imageString = [NSAttributedString yy_attachmentStringWithContent:imageV contentMode:UIViewContentModeScaleAspectFit attachmentSize:CGSizeMake(15, 15) alignToFont:_contentL.font alignment:YYTextVerticalAlignmentCenter];
- }else{
- imageString = [[NSMutableAttributedString alloc]initWithString:imageName];
- }
- //图片附件的文本长度是1
- NSLog(@"emoj===%zd===size-w:%f==size-h:%f",imageString.length,imageString.size.width,imageString.size.height);
- NSUInteger length = attstr.length;
- NSRange newRange = NSMakeRange(result.range.location - lengthDetail, result.range.length);
- [attstr replaceCharactersInRange:newRange withAttributedString:imageString];
-
- lengthDetail += length - attstr.length;
- }
- NSAttributedString *dateStr = [[NSAttributedString alloc]initWithString:[NSString stringWithFormat:@" %@",_model.datetime] attributes:@{NSForegroundColorAttributeName:RGB_COLOR(@"#969696", 1),NSFontAttributeName:[UIFont systemFontOfSize:11]}];
-
- [attstr appendAttributedString:dateStr];
- //不同字体居中对齐、基线偏移比率
- [attstr addAttribute:NSBaselineOffsetAttributeName value:@(0.36 * (14 - 11)) range:NSMakeRange(attstr.length - _model.datetime.length, _model.datetime.length)];
-
- //更新到label上
- [_replyTable reloadData];
-
- _contentL.textColor = UIColor.blackColor;
- _contentL.font = SYS_Font(15);
- _contentL.numberOfLines = 0;
- [attstr addAttribute:NSForegroundColorAttributeName value:UIColor.blackColor range:attstr.yy_rangeOfAll];
- //给被@加颜色
- NSData *mix_data = [_model.at_info dataUsingEncoding:NSUTF8StringEncoding];
- NSArray *atArray = [NSJSONSerialization JSONObjectWithData:mix_data options:NSJSONReadingAllowFragments error:nil];
- if (atArray.count>0) {
- //有@
- for (int i=0; i<atArray.count; i++) {
- NSDictionary *u_dic = atArray[i];
- NSString *uname = [NSString stringWithFormat:@"@%@",[u_dic valueForKey:@"name"]];
- if ([_model.content containsString:uname]) {
- NSRange uRang = [_model.content rangeOfString:uname];
- // [attstr addAttribute:NSForegroundColorAttributeName value:AtCol range:uRang];
- [attstr yy_setTextHighlightRange:uRang color:AtCol backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) {
- NSLog(@"进入个人中心");
- YBCenterVC *center = [[YBCenterVC alloc]init];
- center.otherUid = minstr([u_dic valueForKey:@"uid"]);
- center.isPush = YES;
- [[YBBaseAppDelegate sharedAppDelegate] pushViewController:center animated:YES];
- if (self.delegate && [self.delegate respondsToSelector:@selector(endEnterCenter)]) {
- [self.delegate endEnterCenter];
- }
- }];
- }
- }
- }
-
- _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 = UIColor.whiteColor;
- //回复
- 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];
- /*
- NSString *tempStr = [NSString stringWithFormat:@"展开%d条回复",[_model.replys intValue]>=2?([_model.replys intValue]-1):(1)];
- 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];
- }
- [_Reply_Button setAttributedTitle:attstr forState:0];
- */
- NSMutableAttributedString *attstr2 = [[NSMutableAttributedString alloc]initWithString:YZMsg(@"收起")];
- [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);
- }];
- NSLog(@"list:%lu==replays:%@",(unsigned long)_model.replyList.count,_model.replys);
- //rk_3-2
- if ((_model.replyList.count % 10 != 0
- && _model.replyList.count % 10 != 1
- && _model.replyList.count % 10 != 2
- && _model.replyList.count% 10 != 3)
- || ((_model.replyList.count)== [_model.replys intValue])
- ) {
- replyBtn.selected = YES;
- }else{
- replyBtn.selected = NO;
- }
- // replyBtn.selected = NO;
- // if (_model.replyList.count % 10 != 0) {
- // replyBtn.selected = YES;
- // }
- // if (_model.replyList.count == 2) {
- // replyBtn.selected = YES;
- // }
- // if (_model.replyList.count == 3) {
- // replyBtn.selected = YES;
- // }
-
- // }
- _replyTable.tableFooterView = _model.replayView;
- _tableHeight.constant = HHHH+20;
- }
- }else{
- _tableHeight.constant = 0;
- _replyTable.tableFooterView = nil;
- }
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
- return _replyArray.count;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
- commDetailCell *cell = [tableView dequeueReusableCellWithIdentifier:@"commDetailCELL"];
- if (!cell) {
- cell = [[commDetailCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"commDetailCell"];
- }
- detailmodel *model = [[detailmodel alloc]initWithDic:_replyArray[indexPath.row]];
- cell.authorID = _authorID;
- cell.model = model;
- cell.delegate = self;
- cell.selectionStyle = UITableViewCellSelectionStyleNone;
- cell.backgroundColor = UIColor.whiteColor;
- return cell;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- detailmodel *model = [[detailmodel alloc]initWithDic:_replyArray[indexPath.row]];
- return model.rowH;
- }
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
- [tableView deselectRowAtIndexPath:indexPath animated:NO];
- NSDictionary *subdic = _replyArray[indexPath.row];
- if ([[Config getOwnID] intValue]<=0 && self.comCellEvent) {
- self.comCellEvent();
- return;
- }
- [self.delegate pushDetails:subdic andCell:self];
- }
- - (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%@",YZMsg(@"展开"),[_model.replys intValue]>=2?([_model.replys intValue]-1):(1),YZMsg(@"条回复")];
- }else{
- tempStr = [NSString stringWithFormat:@"%@",YZMsg(@"展开更多回复")];
- }
- 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];
- }
- - (void)requestData:(BOOL)flag andBtn:(UIButton *)replyBtn{
- NSString *last_replyid = @"0";
- NSDictionary *dic = [_replyArray lastObject];
- if ([dic isKindOfClass:[NSDictionary class]] && flag == NO) {
- last_replyid = [NSString stringWithFormat:@"%@",[dic valueForKey:@"id"]];
- }
- if (flag) {
- //有新回复,pag重置
- page = 1;
- }
- NSString *url = [NSString stringWithFormat:@"Video.getReplys&commentid=%@&p=%d&uid=%@&last_replyid=%@",_model.parentid,page,[Config getOwnID],last_replyid];
-
- [YBNetworking postWithUrl:url Dic:nil Suc:^(int code, id info, NSString *msg) {
- if (code == 0) {
- [self changeMoreShowText:NO andBtn:replyBtn];
- NSDictionary *infoDic = [info lastObject];
- if ([last_replyid isEqual:@"0"]) {
- //自己回复了评论,重置replys的值
- _model.replys = [NSString stringWithFormat:@"%@",[infoDic valueForKey:@"replys"]];
- }
- NSArray *infoA = [infoDic valueForKey:@"lists"];
- //rk_2-27
- //if (page == 1 && infoA.count>0) {
- // [infoA removeObjectAtIndex:0];
- //}
- if (page == 1 && flag == YES) {
- [_replyArray removeAllObjects];
- }
- for (NSDictionary *dic in infoA) {
- [_replyArray addObject:[dic mutableCopy]];
- }
- _model.replyList = [_replyArray mutableCopy];
- //[_replyTable reloadData];
- //rk_3-2
- if (infoA.count <= 0 ) {
- replyBtn.selected = YES;
- }
- [self.delegate reloadCurCell:_model andIndex:_curIndex andReplist:_replyArray needRefresh:YES];
-
- }else{
- [MBProgressHUD showPop:msg];
- }
- } Fail:^(id fail) {
-
- }];
- }
- - (void)endEditOfGoHome {
- [self endEditing:YES];
- }
- -(void)endEnterCenter
- {
- if (self.delegate && [self.delegate respondsToSelector:@selector(endEnterCenter)]) {
- [self.delegate endEnterCenter];
- }
- }
- #pragma mark - 评论的回复的赞
- -(void)refreshDtailDataWithId:(NSString *)commectid andLikes:(NSString *)likes islike:(NSString *)islike {
- int numbers = 0;
- for (int i=0; i<_model.replyList.count; i++) {
- NSMutableDictionary *subdic = _model.replyList[i];
- NSString *parentid = [NSString stringWithFormat:@"%@",[subdic valueForKey:@"id"]];
- if ([parentid isEqual:commectid]) {
- [subdic setObject:likes forKey:@"likes"];
- [subdic setObject:islike forKey:@"islike"];
- numbers = i;
- //更改源数据,不要刷新cell(点赞接口返回处,已经处理了当前页面显示数据,这里只需修改源数据即可)
- [self.delegate reloadCurCell:_model andIndex:[NSIndexPath indexPathForRow:numbers inSection:0] andReplist:_model.replyList needRefresh:NO];
- break;
- }
- }
- }
- -(void)showLandscapeSuper:(UIView*)view{
- topview = view;
- }
- - (IBAction)zanBtnClick:(id)sender {
- if ([[Config getOwnID] intValue]<=0 && self.comCellEvent) {
- self.comCellEvent();
- return;
- }
- if ([_model.ID isEqual:[Config getOwnID]]) {
- // [MBProgressHUD showPop:YZMsg(@"不能给自己的评论点赞")];
- [MBProgressHUD showError:YZMsg(@"不能给自己的评论点赞") toView:topview.superview];
- return;
- }
- //_bigbtn.userInteractionEnabled = NO;
- NSString *url = [NSString stringWithFormat:@"Video.addCommentLike&uid=%@&commentid=%@&token=%@",[Config getOwnID],_model.parentid,[Config getOwnToken]];
-
- [YBNetworking postWithUrl:url Dic:nil Suc:^(int code, id info, NSString *msg) {
- if (code == 0) {
- //动画
- dispatch_async(dispatch_get_main_queue(), ^{
- [_zanBtn.imageView.layer addAnimation:[PublicObj bigToSmallRecovery] forKey:nil];
- });
-
- NSDictionary *infoDic = [info firstObject];
- NSString *islike = [NSString stringWithFormat:@"%@",[infoDic valueForKey:@"islike"]];
- NSString *likes = [NSString stringWithFormat:@"%@",[infoDic valueForKey:@"likes"]];
-
- _zanNumL.text = likes;
- if ([islike isEqual:@"1"]) {
- [_zanBtn setImage:[UIImage imageNamed:@"likecomment-click"] forState:0];
- _zanNumL.textColor = Pink_Cor;
- }else{
- [_zanBtn setImage:[UIImage imageNamed:@"likecomment"] forState:0];
- _zanNumL.textColor = RGB_COLOR(@"#828282", 1);
- }
- [self.delegate makeLikeRloadList:_model.parentid andLikes:likes islike:islike];
- }else{
- [MBProgressHUD showPop:msg];
- }
- } Fail:^(id fail) {
-
- }];
-
-
- }
- - (IBAction)playVoice:(id)sender {
- [self.delegate playVoice:_model andCell:self];
- }
- - (void)playVoice:(detailmodel *)model andCell:(id)comcell{
- [self.delegate playDetailesVoice:model andCell:comcell];
- }
- - (void)warningLogin{
- if (self.comCellEvent) {
- self.comCellEvent();
- }
- }
- - (IBAction)clickIconBtn:(id)sender {
- if ([[Config getOwnID] intValue]<=0 && self.comCellEvent) {
- self.comCellEvent();
- return;
- }
- if (self.delegate && [self.delegate respondsToSelector:@selector(endEditOfGoHome)]) {
- [self.delegate endEditOfGoHome];
- }
- [[NSNotificationCenter defaultCenter]postNotificationName:@"goCenterNot" object:@"1"];
- YBCenterVC *center = [[YBCenterVC alloc]init];
- center.otherUid = _model.ID;
- center.isPush = YES;
- center.hidesBottomBarWhenPushed = YES;
- center.backEvent = ^{
- [[NSNotificationCenter defaultCenter]postNotificationName:@"goCenterNot" object:@"0"];
- };
- [[YBBaseAppDelegate sharedAppDelegate] pushViewController:center animated:YES];
- }
- @end
|