| 12345678910111213141516171819202122232425 |
- //
- // 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 <UIKit/UIKit.h>
- @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
|