| 12345678910111213141516171819 |
- //
- // UINavigationController+CompletionBlock.h
- // OneCable
- //
- // Created by ncomz on 2017. 6. 28..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- @interface UINavigationController (CompletionBlock)
- - (UIViewController *)popViewControllerAnimated:(BOOL)animated completion:(void (^)()) completion;
- - (NSArray< UIViewController *> *)popToRootViewControllerAnimated:(BOOL)animated completion:(void (^)()) completion;
- @end
|