MyInfoCell.h 1009 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MyInfoCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/1.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyInfoCell : UITableViewCell
  11. @property (strong,nonatomic) IBOutlet UILabel *cell0TitleLabel;
  12. @property (strong,nonatomic) IBOutlet UIImageView *cell0UserImgView;
  13. @property (strong,nonatomic) IBOutlet UIImageView *cell0ErWeiMaImgView;
  14. @property (strong,nonatomic) IBOutlet UILabel *cell0ValueLabel;
  15. @property (strong,nonatomic) IBOutlet UIView *cell0LineView;
  16. @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
  17. @property (strong,nonatomic) IBOutlet UILabel *cell1ValueLabel;
  18. @property (strong,nonatomic) IBOutlet UIView *cell1LineView;
  19. + (CGFloat)configCell0Height;
  20. + (CGFloat)configCell1Height;
  21. + (MyInfoCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  22. + (MyInfoCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. @end
  24. NS_ASSUME_NONNULL_END