2021-09-23 18:38:33 +08:00
|
|
|
//
|
|
|
|
// XPMineHeaderView.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2021/9/22.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2021-09-27 11:15:28 +08:00
|
|
|
@class UserInfoModel, SDCycleScrollView;
|
2021-09-23 18:38:33 +08:00
|
|
|
@interface XPMineUserInfoHeaderView : UIView
|
|
|
|
///
|
|
|
|
@property (nonatomic,strong) UserInfoModel *userInfo;
|
2021-09-27 11:15:28 +08:00
|
|
|
///轮播图
|
|
|
|
@property (nonatomic,strong, readonly) SDCycleScrollView *cycleScrollView;
|
2021-09-23 18:38:33 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|