ForumItemTableViewCell.h 1.3 KB
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
//
//  ForumItemTableViewCell.h
//  Lighting
//
//  Created by 曹云霄 on 2016/12/8.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ForumItemTableViewCell : UITableViewCell


14 15 16
/**
 帖子标题
 */
曹云霄's avatar
曹云霄 committed
17
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
18

19 20 21 22 23
/**
 标题x约束
 */
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *titleLabelConstraint;

24 25 26
/**
 发布人头像
 */
曹云霄's avatar
曹云霄 committed
27
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView;
28 29 30 31

/**
 发布人、时间
 */
曹云霄's avatar
曹云霄 committed
32
@property (weak, nonatomic) IBOutlet UILabel *nameAndDateLabel;
33 34 35 36

/**
 内容
 */
曹云霄's avatar
曹云霄 committed
37
@property (weak, nonatomic) IBOutlet UILabel *contentLabel;
38 39 40 41

/**
 评论数量
 */
曹云霄's avatar
曹云霄 committed
42
@property (weak, nonatomic) IBOutlet UILabel *commentsNumberLabel;
43

44 45 46 47 48
/**
 是否是精华帖
 */
@property (weak, nonatomic) IBOutlet CustomBorderLabel *isElitePostLabel;

49 50 51 52 53
/**
 是否置顶
 */
@property (weak, nonatomic) IBOutlet CustomBorderLabel *placedLabel;

54 55 56
/**
 赞数量
 */
曹云霄's avatar
曹云霄 committed
57
@property (weak, nonatomic) IBOutlet UILabel *praiseNumberLabel;
58 59 60 61

/**
 图片背景
 */
曹云霄's avatar
曹云霄 committed
62 63
@property (weak, nonatomic) IBOutlet CustomImageBackView *imageBackView;

64 65 66 67 68
/**
 数据源
 */
@property (nonatomic,strong) CustomTOForumTopicEntity *topicEntity;

69 70 71 72 73
/**
 cell下标
 */
@property (nonatomic,strong) NSIndexPath *indexPath;

曹云霄's avatar
曹云霄 committed
74
@end