123456789101112131415161718192021222324252627282930313233 |
- //
- // MyInfoCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/1.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyInfoCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UILabel *cell0TitleLabel;
- @property (strong,nonatomic) IBOutlet UIImageView *cell0UserImgView;
- @property (strong,nonatomic) IBOutlet UIImageView *cell0ErWeiMaImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell0ValueLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell0LineView;
-
- @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell1ValueLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell1LineView;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (MyInfoCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (MyInfoCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|