27 lines
650 B
Objective-C
27 lines
650 B
Objective-C
//
|
|
// XPRoomStarKitchenBannerView.h
|
|
// YuMi
|
|
//
|
|
// Created by YuMi on 2022/12/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPRoomStarKitchenModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPRoomStarKitchenBannerView;
|
|
@protocol XPRoomStarKitchenBannerViewDelegate <NSObject>
|
|
|
|
- (void)xPRoomStarKitchenBannerView:(XPRoomStarKitchenBannerView *)view didClick:(XPRoomStarKitchenModel *)starModel;
|
|
|
|
@end
|
|
|
|
|
|
@interface XPRoomStarKitchenBannerView : UIView
|
|
@property (nonatomic,assign) BOOL isSvga;
|
|
@property (nonatomic,strong) XPRoomStarKitchenModel *starModel;
|
|
@property (nonatomic,weak) id<XPRoomStarKitchenBannerViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|