| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // FLEXWindow.m
- // Flipboard
- //
- // Created by Ryan Olson on 4/13/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import "FLEXWindow.h"
- #import <objc/runtime.h>
- @implementation FLEXWindow
- - (id)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- if (self) {
- self.backgroundColor = [UIColor clearColor];
- // Some apps have windows at UIWindowLevelStatusBar + n.
- // If we make the window level too high, we block out UIAlertViews.
- // There's a balance between staying above the app's windows and staying below alerts.
- // UIWindowLevelStatusBar + 100 seems to hit that balance.
- self.windowLevel = UIWindowLevelStatusBar + 100.0;
- }
- return self;
- }
- - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
- {
- BOOL pointInside = NO;
- if ([self.eventDelegate shouldHandleTouchAtPoint:point]) {
- pointInside = [super pointInside:point withEvent:event];
- }
- return pointInside;
- }
- - (BOOL)shouldAffectStatusBarAppearance
- {
- return [self isKeyWindow];
- }
- - (BOOL)canBecomeKeyWindow
- {
- return [self.eventDelegate canBecomeKeyWindow];
- }
- + (void)initialize
- {
- // This adds a method (superclass override) at runtime which gives us the status bar behavior we want.
- // The FLEX window is intended to be an overlay that generally doesn't affect the app underneath.
- // Most of the time, we want the app's main window(s) to be in control of status bar behavior.
- // Done at runtime with an obfuscated selector because it is private API. But you shoudn't ship this to the App Store anyways...
- NSString *canAffectSelectorString = [@[@"_can", @"Affect", @"Status", @"Bar", @"Appearance"] componentsJoinedByString:@""];
- SEL canAffectSelector = NSSelectorFromString(canAffectSelectorString);
- Method shouldAffectMethod = class_getInstanceMethod(self, @selector(shouldAffectStatusBarAppearance));
- IMP canAffectImplementation = method_getImplementation(shouldAffectMethod);
- class_addMethod(self, canAffectSelector, canAffectImplementation, method_getTypeEncoding(shouldAffectMethod));
- // One more...
- NSString *canBecomeKeySelectorString = [NSString stringWithFormat:@"_%@", NSStringFromSelector(@selector(canBecomeKeyWindow))];
- SEL canBecomeKeySelector = NSSelectorFromString(canBecomeKeySelectorString);
- Method canBecomeKeyMethod = class_getInstanceMethod(self, @selector(canBecomeKeyWindow));
- IMP canBecomeKeyImplementation = method_getImplementation(canBecomeKeyMethod);
- class_addMethod(self, canBecomeKeySelector, canBecomeKeyImplementation, method_getTypeEncoding(canBecomeKeyMethod));
- }
- @end
|