
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
27 lines
626 B
Objective-C
27 lines
626 B
Objective-C
//
|
|
// ShoppingMallItemPreview.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/11/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class DressUpShopModel, MyDressingDataModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ShoppingMallItemPreview : UIView
|
|
|
|
@property(nonatomic, copy) void(^buyWith)(DressUpShopModel *model);
|
|
@property(nonatomic, copy) void(^giveWith)(DressUpShopModel *model);
|
|
|
|
@property(nonatomic, copy) void(^rebuyWith)(MyDressingDataModel *model);
|
|
|
|
- (instancetype)initWith:(DressUpShopModel *)model isForGive:(BOOL)isForGive;
|
|
- (instancetype)initWithMyDress:(MyDressingDataModel *)model isVaild:(BOOL)isVaild;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|