26 lines
562 B
Plaintext
26 lines
562 B
Plaintext
//
|
|
// EPMineHeaderView.h
|
|
// YuMi
|
|
//
|
|
// Created by AI on 2025-10-09.
|
|
// Copyright © 2025 YuMi. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// EP 系列个人主页头部视图
|
|
/// 大圆形头像 + 渐变背景 + 用户信息展示
|
|
@interface EPMineHeaderView : UIView
|
|
|
|
/// 设置按钮点击回调
|
|
@property (nonatomic, copy, nullable) void(^onSettingsButtonTapped)(void);
|
|
|
|
/// 更新用户信息
|
|
/// @param userInfoDict 用户信息字典
|
|
- (void)updateWithUserInfo:(NSDictionary *)userInfoDict;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END |