I have a GLKViewController to handle some OpenGL drawing. I have the glkView:drawInRect
and update
method both implemented and have the preferredFramesPerSecond
property set to 30 (the default).
The problem is that the delegate methods stop firing when the user interacts with other part of the app. The two cases that I have seen this happen on is when the user scrolls a UITableView or interacts with a MKMapView.
Is there a way to make sure these delegates always fire, regardless of what the rest of the app is doing. The only time I want these to stop is when the app enters the background (which is does automatically).
The reason for this is that during scrolling in a table view or map view the runloop is in UITrackingRunLoopMode
which has a higher priority than the default mode. This prevents some events from firing in order to guarantee a high scrolling performance.
To solve your problem you must set up your own rendering loop instead of relying on the GLKViewController
.
enableSetNeedsDisplay
of the GLKView
to NO
(should be set automatically when using GLKViewController).preferredFramesPerSecond
to 0 (or maybe 1) to disable the rendering loop of GLKViewController
or don't use GLKViewController at all#import <QuartzCore/QuartzCore.h>
CADisplayLink
and schedule it in NSRunLoopCommonModes
:CADisplayLink* displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(render:)]; [displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
- (void)render:(CADisplayLink*)displayLink { GLKView* view = (GLKView*)self.view; [view display]; }
I haven't tested this, so tell me if it works!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With