UINavigationController+CompletionBlock.h 494 B

12345678910111213141516171819
  1. //
  2. // UINavigationController+CompletionBlock.h
  3. // OneCable
  4. //
  5. // Created by ncomz on 2017. 6. 28..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Foundation/Foundation.h>
  10. @interface UINavigationController (CompletionBlock)
  11. - (UIViewController *)popViewControllerAnimated:(BOOL)animated completion:(void (^)()) completion;
  12. - (NSArray< UIViewController *> *)popToRootViewControllerAnimated:(BOOL)animated completion:(void (^)()) completion;
  13. @end