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