// // YBBaseAppDelegate.h // TCLVBIMDemo // // Created by annidyfeng on 16/7/29. // Copyright © 2016年 tencent. All rights reserved. // #import @interface YBBaseAppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; + (instancetype)sharedAppDelegate; - (UINavigationController *)navigationViewController; - (UIViewController *)topViewController; - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated; - (NSArray *)popToViewController:(UIViewController *)viewController; - (UIViewController *)popViewController:(BOOL)animated; - (NSArray *)popToRootViewController; - (void)presentViewController:(UIViewController *)vc animated:(BOOL)animated completion:(void (^)())completion; - (void)dismissViewController:(UIViewController *)vc animated:(BOOL)animated completion:(void (^)())completion; @end