30 lines
516 B
Objective-C
30 lines
516 B
Objective-C
//
|
|
// YMSimpleMineHeaderView.h
|
|
// YUMI
|
|
//
|
|
// Created by XY on 2023/2/20.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPMineItemModel.h"
|
|
|
|
@class UserInfoModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPSimpleMineHeaderViewDelegate <NSObject>
|
|
|
|
- (void)headerViewBtnActionType:(XPMineItemType)itemType;
|
|
|
|
@end
|
|
|
|
@interface XPSimpleMineHeaderView : UIView
|
|
/// 用户信息
|
|
@property (nonatomic,strong) UserInfoModel *userInfo;
|
|
|
|
@property (nonatomic, weak) id<XPSimpleMineHeaderViewDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|