20 lines
390 B
Objective-C
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
|