Files
mier_ios/SweetParty/主类/Mine/装扮&商城/DressUpToBuyView.h
2025-08-11 10:43:19 +08:00

28 lines
637 B
Objective-C
Executable File

//
// DressUpToBuyView.h
// YaYin
//
// Created by dlan on 2023/2/7.
// Copyright © 2023 YaYin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SPShopMallModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface DressUpToBuyView : UIView
@property (weak, nonatomic) IBOutlet UIImageView *iconIMG;
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
/** */
@property(nonatomic, strong) SPShopMallModel *model;
- (void)configWithModel:(SPShopMallModel *)model title:(NSString *)title;
@end
NS_ASSUME_NONNULL_END