• 曹云霄's avatar
    欧普主页:增加http链接、模块入口(客户提供设计稿) · 684e3bbb
    曹云霄 authored
    讨论区:增加层次,分类页面更改。
    
    帖子看过之后变灰(本地缓存)
    帖子的分享按钮放出来
    
    闯关:
      首页延长显示区,主题两行显示,右边更多。。。点击更多,显示列表页
      未参加的显示在前面。点击进去,提示是否开始。
      过期的不要显示
      已提交的显示多少分,是否成功。没成功的增加还有几次机会。
      闯关说明改一改。(客户提供)
    684e3bbb
ForumItemTableViewCell.h 1.27 KB
//
//  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;

/**
 发布者名字
 */
@property (weak, nonatomic) IBOutlet UILabel *userNameLabel;

/**
 发布人头像
 */
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView;

/**
 内容
 */
@property (weak, nonatomic) IBOutlet UILabel *contentLabel;

/**
 评论数量
 */
@property (weak, nonatomic) IBOutlet UILabel *commentsNumberLabel;

/**
 帖子创建时间
 */
@property (weak, nonatomic) IBOutlet UILabel *postCreateTimeLabel;

/**
 背景View
 */
@property (weak, nonatomic) IBOutlet UIView *contentBackView;

/**
 赞数量
 */
@property (weak, nonatomic) IBOutlet UILabel *praiseNumberLabel;

/**
 图片背景
 */
@property (weak, nonatomic) IBOutlet CustomImageBackView *imageBackView;


/**
 刷新cell

 @param indexPath 下标
 @param topicEntity 实体
 @param delegate 代理
 */
- (void)refreshCell:(NSIndexPath *)indexPath withTopicEntity:(CustomTOForumTopicEntity *)topicEntity withDelegate:(id<TapClickImageViewDelegate>)delegate;


@end