// // ForumItemTableViewCell.h // Lighting // // Created by 曹云霄 on 2016/12/8. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import <UIKit/UIKit.h> @interface ForumItemTableViewCell : UITableViewCell /** 帖子标题 */ @property (weak, nonatomic) IBOutlet UILabel *titleLabel; /** 标题x约束 */ @property (weak, nonatomic) IBOutlet NSLayoutConstraint *titleLabelConstraint; /** 发布人头像 */ @property (weak, nonatomic) IBOutlet UIImageView *headerImageView; /** 发布人、时间 */ @property (weak, nonatomic) IBOutlet UILabel *nameAndDateLabel; /** 内容 */ @property (weak, nonatomic) IBOutlet UILabel *contentLabel; /** 评论数量 */ @property (weak, nonatomic) IBOutlet UILabel *commentsNumberLabel; /** 是否是精华帖 */ @property (weak, nonatomic) IBOutlet CustomBorderLabel *isElitePostLabel; /** 是否置顶 */ @property (weak, nonatomic) IBOutlet CustomBorderLabel *placedLabel; /** 是否管理员 */ @property (weak, nonatomic) IBOutlet CustomBorderLabel *administratorLabel; /** 赞数量 */ @property (weak, nonatomic) IBOutlet UILabel *praiseNumberLabel; /** 图片背景 */ @property (weak, nonatomic) IBOutlet CustomImageBackView *imageBackView; /** 数据源 */ @property (nonatomic,strong) CustomTOForumTopicEntity *topicEntity; /** cell下标 */ @property (nonatomic,strong) NSIndexPath *indexPath; @end