NoticeUnreadCell.h 902 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NoticeUnreadCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/6.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NoticeUnreadCell : UITableViewCell
  11. @property (strong,nonatomic) IBOutlet UIView *cell0SearchBgView;
  12. @property (strong,nonatomic) IBOutlet UIButton *cell0SearchBtn;
  13. @property (strong,nonatomic) IBOutlet UIImageView *cell1ImageView;
  14. @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
  15. @property (strong,nonatomic) IBOutlet UILabel *cell1IntroLabel;
  16. @property (strong,nonatomic) IBOutlet UILabel *cell1TimeLabel;
  17. + (CGFloat)configCell0Height;
  18. + (CGFloat)configCell1Height;
  19. + (NoticeUnreadCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  20. + (NoticeUnreadCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  21. @end
  22. NS_ASSUME_NONNULL_END