12345678910111213141516171819202122232425262728293031323334 |
- //
- // My_CenterCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/1.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface My_CenterCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet NSLayoutConstraint *cell0TopH;
- @property (strong,nonatomic) IBOutlet UIImageView *cell0UserImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell0UserName;
- @property (strong,nonatomic) IBOutlet UIView *cell0IntrtBgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell0Intrt;
- @property (strong,nonatomic) IBOutlet UIImageView *cell1IconImg;
- @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell1LineView;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (My_CenterCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (My_CenterCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|