Files
yinmeng-ios/xplan-ios/Main/Mine/View/SubViews/MineInfo/XPMineUserInfoCustomNavView.h
2021-09-27 11:15:28 +08:00

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