123456789101112131415161718192021 |
- //
- // NewsOfLearnCell.h
- // jiaPei
- //
- // Created by apple on 2018/2/10.
- // Copyright © 2018年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface NewsOfLearnCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *headImg;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *dateLabel;
- @property (weak, nonatomic) IBOutlet UILabel *watchLabel;
- @end
|