28 lines
790 B
Objective-C
28 lines
790 B
Objective-C
//
|
|
// XPMineCustomNavView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 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;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|