DiscussModuleCollectionViewCell.m 632 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
//
//  DiscussModuleCollectionViewCell.m
//  Lighting
//
//  Created by 曹云霄 on 2017/3/15.
//  Copyright © 2017年 上海勾芒科技有限公司. All rights reserved.
//

#import "DiscussModuleCollectionViewCell.h"

@implementation DiscussModuleCollectionViewCell

曹云霄's avatar
曹云霄 committed
13 14 15 16 17 18 19 20
- (void)refreshCell:(TOForumCategoryEntity *)entity
{
    [self.discussModuleImageView sd_setImageWithURL:[NSURL URLWithString:entity.attachmentBg.fileUrl] placeholderImage:REPLACEIMAGE];
    [self.iconImageView sd_setImageWithURL:[NSURL URLWithString:entity.attachment.fileUrl] placeholderImage:REPLACEIMAGE];
    self.titleLabel.text = entity.name;

}

21
@end