28 lines
637 B
Objective-C
Executable File
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
|