25 lines
529 B
C
25 lines
529 B
C
![]() |
//
|
||
|
// XPMineHeadView.h
|
||
|
// xplan-ios
|
||
|
//
|
||
|
// Created by 冯硕 on 2021/9/16.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
@class UserInfoModel,XPMineHeadView;
|
||
|
@protocol XPMineHeadViewDelegate <NSObject>
|
||
|
///点击了头像
|
||
|
- (void)xPMineHeadView:(XPMineHeadView *)view didClickAvatar:(UserInfoModel *)info;
|
||
|
|
||
|
@end
|
||
|
@interface XPMineHeadView : UIView
|
||
|
///用户信息
|
||
|
@property (nonatomic,strong) UserInfoModel *userInfo;
|
||
|
///代理
|
||
|
@property (nonatomic,assign) id<XPMineHeadViewDelegate> delegate;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|