NGModalPresentation/ModalPresentation/Custom Modal Presentation/UIViewController+NGModalPresentation.h

21 lines
743 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// UIViewController+NGModalPresentation.h
// ModalPresentation
//
// Created by Wojciech Nagrodzki on 04/10/2014.
//
//
#import <UIKit/UIKit.h>
@interface UIViewController (NGModalPresentation)
/**
Presents a view controller modally.
@param viewControllerToPresent The view controller to display over the current view controllers content.
@param flag Pass YES to animate the presentation; otherwise, pass NO.
@param completion The block to execute after the presentation finishes. This block has no return value and takes no parameters. You may specify nil for this parameter.
*/
- (void)ng_presentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion;
@end