Package apple.glkit.protocol
Interface GLKViewControllerDelegate
-
public interface GLKViewControllerDelegate
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidglkViewControllerUpdate(GLKViewController controller)Required method for implementing GLKViewControllerDelegate.default voidglkViewControllerWillPause(GLKViewController controller, boolean pause)Delegate method that gets called when the pause state changes.
-
-
-
Method Detail
-
glkViewControllerWillPause
default void glkViewControllerWillPause(GLKViewController controller, boolean pause)
Delegate method that gets called when the pause state changes.
-
glkViewControllerUpdate
void glkViewControllerUpdate(GLKViewController controller)
Required method for implementing GLKViewControllerDelegate. This update method variant should be used when not subclassing GLKViewController. This method will not be called if the GLKViewController object has been subclassed and implements -(void)update.
-
-