15 lines
415 B
Objective-C
15 lines
415 B
Objective-C
//
|
|
// DDNavigationControllerDelegateReceiver.h
|
|
// DDBasicControlsKit_Private
|
|
// Created by DDIsFriend on 2022/9/20.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDNavigationControllerDelegateReceiver : NSObject <UINavigationControllerDelegate>
|
|
@property (nonatomic, strong, nullable)UIPercentDrivenInteractiveTransition *percentDrivenInteractiveTransition;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|