mirror of
https://github.com/wnagrodzki/NGModalPresentation.git
synced 2025-04-05 12:02:21 +02:00
22 lines
465 B
Objective-C
22 lines
465 B
Objective-C
//
|
|
// NGModalAnimationController.h
|
|
// ModalPresentation
|
|
//
|
|
// Created by Wojciech Nagrodzki on 04/10/2014.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
typedef NS_ENUM(NSUInteger, NGModalAnimationControllerMode) {
|
|
NGModalAnimationControllerModePresentation,
|
|
NGModalAnimationControllerModeDismissal
|
|
};
|
|
|
|
|
|
@interface NGModalAnimationController : NSObject <UIViewControllerAnimatedTransitioning>
|
|
|
|
- (instancetype)initWithMode:(NGModalAnimationControllerMode)mode;
|
|
|
|
@end
|