// // FLPushViewControllerHelper.h // FirstLink // // Created by unicode on 14-9-26. // Copyright (c) 2014年 FirstLink. All rights reserved. // #import 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*)viewController type:(UIImagePickerControllerSourceType)type; +(FLViewController*)currentController; +(UINavigationController *)currentNavigationController; +(NSArray *)currentControllers; +(UITabBarController*)currentTabBarController; +(void)selectTabbarControllerAtIndex:(NSInteger)index; +(UIStoryboard*)currentStoryBoard; + (void)backToMainController; + (void)backToOrderListController; // 回到我的订单 + (BOOL)isShowingLoginNavigationController; @end