123456789101112131415161718192021222324 |
- //
- // NoticeTableViewCell.h
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/1/29.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NoticeTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
- @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
- @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
- @property (weak, nonatomic) IBOutlet UILabel *labelDate;
- @property (weak, nonatomic) IBOutlet UIView *viewHide;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|