My_CenterCell.h 1.1 KB

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