Files
peko-ios/YuMi/Modules/YMNewHome/View/CustomView/XPNewHomeItemView.h
2023-09-12 18:04:05 +08:00

20 lines
390 B
Objective-C

//
// XPNewHomeItemView.h
// YuMi
//
// Created by duoban on 2023/9/1.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPNewHomeItemView : UIView
@property(nonatomic,strong) UIImage *bgImage;
@property(nonatomic,copy) NSString *title;
@property(nonatomic,strong) NSString *subTitle;
-(instancetype)initWithFrame:(CGRect)frame type:(int)type;
@end
NS_ASSUME_NONNULL_END