123456789101112131415161718 |
- //
- // MessageCell.h
- // LN_School
- //
- // Created by EchoShacolee on 2017/10/23.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MessageCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *title;
- @property (weak, nonatomic) IBOutlet UILabel *content;
- @property (weak, nonatomic) IBOutlet UILabel *date;
- @property(strong,nonatomic)NSDictionary *dic;
- @end
|