mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
20 lines
No EOL
374 B
Objective-C
20 lines
No EOL
374 B
Objective-C
//
|
|
// EventWindow.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 9/17/14.
|
|
// Copyright (c) 2014 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface EventWindow : UIWindow {
|
|
CGPoint tapLocation;
|
|
NSTimer *contextualMenuTimer;
|
|
BOOL unmoved;
|
|
UIView *tapDetectingView;
|
|
}
|
|
|
|
@property (nonatomic) UIView *tapDetectingView;
|
|
|
|
@end |