Files
yuyin_ios/SweetParty/主类/Mine/装扮&商城/DressUpToBuyView.h

28 lines
637 B
C
Raw Permalink Normal View History

2025-08-08 11:05:33 +08:00
//
// 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