NewsBlur/clients/ios/Classes/EventWindow.h

21 lines
375 B
C
Raw Normal View History

//
// 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;
2014-09-18 16:55:37 -07:00
BOOL unmoved;
UIView *tapDetectingView;
}
2014-09-18 16:55:37 -07:00
@property (nonatomic) UIView *tapDetectingView;
2019-01-16 19:15:07 -08:00
@end