//
// AnnouncementTableViewCell.m
// Lighting
//
// Created by 曹云霄 on 2016/11/23.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "AnnouncementTableViewCell.h"
@implementation AnnouncementTableViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setAfficheEntity:(TOAfficheEntity *)afficheEntity
{
_afficheEntity = afficheEntity;
self.announcementTypeLabel.customText = _afficheEntity.afficheType;
self.announcementTimeLabel.text = [NSString stringWithFormat:@"发布时间:%@",_afficheEntity.createDate];
self.announcementTitleLabel.text = _afficheEntity.title;
}
@end
-
曹云霄 authoreda95f802a