console outputs: IOHIDEventQueue.c, line: 512

Originator:neoneye
Number:rdar://14936940 Date Originated:7 sep 2013
Status:Open Resolved:No
Product:iOS SDK Product Version:7.0
Classification:Not serios Reproducible:Always
 
Xcode: Version 5.0 (5A11365x)
I run it on the iOS7.0 simulator.


The following text is printet out to the console whenever the UIPanGestureRecognizer fires.

AssertMacros: queueEntry,  file: /SourceCache/IOKitUser_Sim/IOKitUser-920.1.11/hid.subproj/IOHIDEventQueue.c, line: 512


In the following code 'self' is my subclass of UIView.

    self.gestureRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panAction:)];
    self.gestureRecognizer.minimumNumberOfTouches = 1;
    self.gestureRecognizer.maximumNumberOfTouches = 1;
    [self addGestureRecognizer:self.gestureRecognizer];
    self.gestureRecognizer.delegate = self;



In -initWithFrame I create an OpenGL subview.

    GLKView* gv = [[GLKView alloc] initWithFrame:self.bounds context:_context];
    gv.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    [self addSubview:gv];

Comments


Please note: Reports posted here will not necessarily be seen by Apple. All problems should be submitted at bugreport.apple.com before they are posted here. Please only post information for Radars that you have filed yourself, and please do not include Apple confidential information in your posts. Thank you!