// // UIWindow+JKHierarchy.h // JKCategories (https://github.com/shaojiankui/JKCategories) // // Created by Jakey on 15/1/16. // Copyright (c) 2015年 www.skyfox.org. All rights reserved. // #import @interface UIWindow (JKHierarchy) /*! @method topMostController @return Returns the current Top Most ViewController in hierarchy. */ - (UIViewController*)jk_topMostController; /*! @method currentViewController @return Returns the topViewController in stack of topMostController. */ - (UIViewController*)jk_currentViewController; @end