Inherits from UIViewController
Declared in KKViewController.h

Overview

View controller for a Kobold Kit view, supposed to be subclassed by user for the Kobold Kit view controller & view. Creates the KKView and performs other setup tasks. Combines code for both iOS & OS X platforms to a single uniform controller.

Properties

kkView

The view controller’s view cast to KKView. Use this property to use the KKView methods and properties.

@property (atomic, readonly) KKView *kkView

Return Value

The view controller’s view cast to KKView. Use this property to use the KKView methods and properties.

Declared In

KKViewController.h

Instance Methods

presentFirstScene

Called when the view is ready to present the first scene. Override in your subclass to present the very first scene.

- (void)presentFirstScene

Declared In

KKViewController.h

viewDidLoad

Called after view did load. Declaration needed for Mac OS X whose NSViewController knows no viewDidLoad method.

- (void)viewDidLoad

Declared In

KKViewController.h