UIWindow+Private.h 705 B

12345678910111213141516171819
  1. const UIWindowLevel UIWindowLevelNotificationCenter = 1056.f;
  2. const UIWindowLevel UIWindowLevelStatusBarLockScreen = 1052.f;
  3. const UIWindowLevel UIWindowLevelAlertReal = 1996.f;
  4. const UIWindowLevel UIWindowLevelTextEffects = 2100.f;
  5. @interface UIWindow (Private)
  6. + (UIWindow *)keyWindow;
  7. + (NSArray *)allWindowsIncludingInternalWindows:(BOOL)internalWindows onlyVisibleWindows:(BOOL)onlyVisibleWindows;
  8. - (void)_updateToInterfaceOrientation:(UIInterfaceOrientation)orientation duration:(double)duration force:(BOOL)force;
  9. @property BOOL keepContextInBackground;
  10. @property (getter=_isSecure, setter=_setSecure:) BOOL _secure;
  11. @property (nonatomic, retain, readonly) UIResponder *firstResponder;
  12. @end