在Swift中接入,调用到- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect之后就不执行update 了,看你们的Demo是会继续执行update 方法的
//------------------------------------------------------------------------------
- (void)update {
NSLog(@"----------------------%s----------------------", __FUNCTION__);
}
//------------------------------------------------------------------------------
- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect {
//conchRuntime renderFrame
[self.m_pConchRuntime renderFrame];
NSLog(@"----------------------%s----------------------", __FUNCTION__);
}