// // ForumItemDetailTableViewCell.m // Lighting // // Created by 曹云霄 on 2016/12/12. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "ForumItemDetailTableViewCell.h" @implementation ForumItemDetailTableViewCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } - (void)setDetailEntity:(CustomTOForumTopicEntity *)detailEntity { _detailEntity = detailEntity; if (_detailEntity) { self.postTitleLabel.text = _detailEntity.title; self.contentLabel.text = _detailEntity.content; self.issuerNameAndDateLabel.text = [NSString stringWithFormat:@"%@: %@ %@",_detailEntity.posterPosition,_detailEntity.posterRealName,_detailEntity.postTime]; self.contentLabel.height = _detailEntity.contentHeight; } } #pragma mark - 删除帖子 - (IBAction)delectButtonClickAction:(UIButton *)sender { if ([self.delegate respondsToSelector:@selector(deletePostAction)]) { [self.delegate deletePostAction]; } } @end