123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @class TOPasscodeViewController;
- NS_ASSUME_NONNULL_BEGIN
- @interface TOPasscodeViewControllerAnimatedTransitioning : NSObject <UIViewControllerAnimatedTransitioning>
- @property (nonatomic, weak, readonly) TOPasscodeViewController *passcodeViewController;
- @property (nonatomic, assign) BOOL dismissing;
- @property (nonatomic, assign) BOOL success;
- - (instancetype)initWithPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
- dismissing:(BOOL)dismissing
- success:(BOOL)success;
- @end
- NS_ASSUME_NONNULL_END
|