30 lines
595 B
Objective-C
30 lines
595 B
Objective-C
//
|
|
// YMFootPrintNavView.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/7/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class XPFootPrintNavView;
|
|
@protocol XPFootPrintNavViewDelegate <NSObject>
|
|
|
|
///点击了返回按钮
|
|
- (void)xPFootPrintNavView:(XPFootPrintNavView *)view didClickBackButton:(UIButton *)sender;
|
|
///点击了清除按钮
|
|
- (void)xPFootPrintNavView:(XPFootPrintNavView *)view didClickClearButton:(UIButton *)sender;
|
|
|
|
@end
|
|
|
|
@interface XPFootPrintNavView : UIView
|
|
|
|
///代理
|
|
@property (nonatomic,weak) id<XPFootPrintNavViewDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|