My_CenterCell.h 1015 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // My_CenterCell.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 My_CenterCell : UITableViewCell
  11. @property (strong,nonatomic) IBOutlet NSLayoutConstraint *cell0TopH;
  12. @property (strong,nonatomic) IBOutlet UIImageView *cell0UserImgView;
  13. @property (strong,nonatomic) IBOutlet UILabel *cell0UserName;
  14. @property (strong,nonatomic) IBOutlet UIView *cell0IntrtBgView;
  15. @property (strong,nonatomic) IBOutlet UILabel *cell0Intrt;
  16. @property (strong,nonatomic) IBOutlet UIImageView *cell1IconImg;
  17. @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
  18. @property (strong,nonatomic) IBOutlet UIView *cell1LineView;
  19. + (CGFloat)configCell0Height;
  20. + (CGFloat)configCell1Height;
  21. + (My_CenterCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  22. + (My_CenterCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. @end
  24. NS_ASSUME_NONNULL_END