UIWindow+AHKAdditions.h 489 B

123456789101112131415161718
  1. //
  2. // UIWindow+AHKAdditions.h
  3. // AHKActionSheetExample
  4. //
  5. // Created by Arkadiusz on 14-04-14.
  6. // Copyright (c) 2014 Arkadiusz Holko. All rights reserved.
  7. //
  8. // Original source: https://github.com/Sumi-Interactive/SIAlertView/blob/master/SIAlertView/UIWindow%2BSIUtils.h
  9. #import <UIKit/UIKit.h>
  10. @interface UIWindow (AHKAdditions)
  11. - (UIViewController *)ahk_viewControllerForStatusBarStyle;
  12. - (UIViewController *)ahk_viewControllerForStatusBarHidden;
  13. - (UIImage *)ahk_snapshot;
  14. @end