| 1234567891011121314151617181920212223242526272829303132 |
- //
- // YBBaseAppDelegate.h
- // TCLVBIMDemo
- //
- // Created by annidyfeng on 16/7/29.
- // Copyright © 2016年 tencent. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface YBBaseAppDelegate : UIResponder<UIApplicationDelegate>
- @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
|