Open GoogleCodeExporter opened 9 years ago
issues is answered on stackoverflow.
answer is:
You do not have to change anything in UIQuery.m file. Please add following
lines of code to UIQuery.h file :
#ifdef __IPHONE_6_0
@interface UITouch () {
NSTimeInterval _timestamp;
UITouchPhase _phase;
UITouchPhase _savedPhase;
NSUInteger _tapCount;
UIWindow *_window;
UIView *_view;
UIView *_gestureView;
UIView *_warpedIntoView;
NSMutableArray *_gestureRecognizers;
NSMutableArray *_forwardingRecord;
CGPoint _locationInWindow;
CGPoint _previousLocationInWindow;
UInt8 _pathIndex;
UInt8 _pathIdentity;
float _pathMajorRadius;
struct {
unsigned int _firstTouchForView:1;
unsigned int _isTap:1;
unsigned int _isDelayed:1;
unsigned int _sentTouchesEnded:1;
unsigned int _abandonForwardingRecord:1;
} _touchFlags;
}
@end
#endif
Original comment by Alex.Gub...@gmail.com
on 10 Oct 2012 at 12:42
Original issue reported on code.google.com by
Alex.Gub...@gmail.com
on 4 Oct 2012 at 9:38