12345678910111213141516171819202122 |
- //
- // YOUPAIMineInfoBaseCell.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/2.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIMineInfoBaseCell : UITableViewCell
- @property(strong, nonatomic) UILabel *titleLab;
- @property(strong, nonatomic) UIImageView *rightArrow;
- @property(strong, nonatomic) UIView *lineView;
- -(void)makeLayout;
- @end
- NS_ASSUME_NONNULL_END
|