// // MessageCell.m // LN_School // // Created by EchoShacolee on 2017/10/23. // Copyright © 2017年 Danson. All rights reserved. // #import "MessageCell.h" @implementation MessageCell -(void)setDic:(NSDictionary *)dic{ if (_dic != dic) { _title.text = dic[@"noticeTitle"]; _content.text = dic[@"content"]; _date.text = dic[@"revDate"]; } } - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end