12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // FLPushViewControllerHelper.h
- // FirstLink
- //
- // Created by unicode on 14-9-26.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- typedef void(^completion)(void);
- @interface FLControllerHelper : NSObject
- +(void)presentLoginViewController;
- +(void)dismissLoginViewController;
- +(void)presentLoginControllerAnimated:(BOOL)animated completion:(completion)completion;
- +(void)dismissLoginControllerAnimated:(BOOL)animated completion:(completion)completion;
- +(void)launchAppCamera:(UIViewController<UIImagePickerControllerDelegate, UINavigationControllerDelegate>*)viewController
- type:(UIImagePickerControllerSourceType)type;
- +(FLViewController*)currentController;
- +(UINavigationController *)currentNavigationController;
- +(NSArray<FLViewController *> *)currentControllers;
- +(UITabBarController*)currentTabBarController;
- +(void)selectTabbarControllerAtIndex:(NSInteger)index;
- +(UIStoryboard*)currentStoryBoard;
- + (void)backToMainController;
- + (void)backToOrderListController; // 回到我的订单
- + (BOOL)isShowingLoginNavigationController;
- @end
|