// // WalletHomeVC.h // StarAndGuest // // Created by apple on 2021/8/10. // Copyright © 2021 刘惠萍. All rights reserved. // #import "BaseTableVC.h" #import "ModelWallet.h" #import "ModelBrand.h" NS_ASSUME_NONNULL_BEGIN @interface WalletHomeVC : BaseTableVC @end @interface WalletHomeHeaderView : UIView //属性 @property (strong, nonatomic) UIImageView *backView; @property (strong, nonatomic) UIImageView *iconImg; @property (strong, nonatomic) UILabel *labelName; @property (strong, nonatomic) UILabel *labelNum; @property (strong, nonatomic) UIView *GBackView; @property (strong, nonatomic) UILabel *labelAll; @property (strong, nonatomic) UILabel *labelAllAdd; @property (strong, nonatomic) UILabel *labelAllMoney; @property (strong, nonatomic) UILabel *labelD; @property (strong, nonatomic) UILabel *labelDMoney; @property (strong, nonatomic) UILabel *labelK; @property (strong, nonatomic) UILabel *labelKMoney; @property (nonatomic, strong) ModelWallet *model; @property (nonatomic, strong) void (^blockBtn)(NSUInteger ); #pragma mark 刷新view - (void)resetViewWithModel:(ModelWallet *)model; @end @interface WalletHomeCell : UITableViewCell @property (strong, nonatomic) UIView *backView; @property (strong, nonatomic) UIImageView *iconImg; @property (strong, nonatomic) UILabel *labelName; @property (strong, nonatomic) UILabel *labelDetail; @property (strong, nonatomic) UILabel *labelX; @property (strong, nonatomic) UIImageView *rightView; @property (strong, nonatomic) ModelBrand *model; #pragma mark 刷新cell - (void)resetCellWithModel:(ModelBrand *)model; @end NS_ASSUME_NONNULL_END