TestinCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // TestinCell.h
  3. // smartRhino
  4. //
  5. // Created by taidi on 2019/12/12.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TestinCell : TDTableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLable;
  13. @property (weak, nonatomic) IBOutlet UILabel *handerResultLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *applyLabel;
  16. @property (weak, nonatomic) IBOutlet UIButton *applyButton;
  17. @property (weak, nonatomic) IBOutlet UILabel *testLabel;
  18. @property (weak, nonatomic) IBOutlet UILabel *testInfolabel;
  19. @property (weak, nonatomic) IBOutlet UIButton *refuseButton;
  20. @property (weak, nonatomic) IBOutlet UIButton *aggreeButton;
  21. + (TestinCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  22. + (TestinCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. + (TestinCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  24. @end
  25. NS_ASSUME_NONNULL_END