1234567891011121314151617181920212223242526272829303132 |
- //
- // NoticeUnreadCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/6.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NoticeUnreadCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UIView *cell0SearchBgView;
- @property (strong,nonatomic) IBOutlet UIButton *cell0SearchBtn;
-
- @property (strong,nonatomic) IBOutlet UIImageView *cell1ImageView;
- @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell1IntroLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell1TimeLabel;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (NoticeUnreadCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (NoticeUnreadCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|