Files
peko-ios/YuMi/Modules/YMMine/View/SubViews/MineInfo/XPMineUserInfoCustomNavView.h
eggmanQQQ fc92135ce6 完善个人资料页功能
完成多麦位
Bug fix
2024-06-27 21:31:00 +08:00

30 lines
832 B
Objective-C

//
// YMMineCustomNavView.h
// YUMI
//
// Created by YUMI on 2021/9/23.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMineUserInfoCustomNavView;
@protocol XPMineCustomNavViewDelegate <NSObject>
///点击了编辑的按钮
- (void)xPMineCustomNavView:(XPMineUserInfoCustomNavView *)view didClickEditButton:(UIButton *)sender;
///点击了返回按钮
- (void)xPMineCustomNavView:(XPMineUserInfoCustomNavView *)view didClickBackButton:(UIButton *)sender;
@end
@interface XPMineUserInfoCustomNavView : UIView
///代理
@property (nonatomic,weak) id<XPMineCustomNavViewDelegate> delegate;
///显示文本
@property (nonatomic,strong,readonly) UILabel *titleLabel;
///编辑按钮
@property (nonatomic,strong,readonly) UIButton *editButton;
- (void)updateBackButtonImage:(UIImage *)image;
@end
NS_ASSUME_NONNULL_END