SKUViewController

Declared In:

Introduction

Subclass of platform dependent view controller, primarily intended for GCEventViewController on tvOS to be able to turn off the X button's default function on controllers for tvOS. Call this following line anywhere in your code to use the controller for system nav:

 
 [[NSNotificationCenter defaultCenter] postNotificationName:kSKURemoteInteractionOn object:nil];
 
 

or to turn it off:

 
 [[NSNotificationCenter defaultCenter] postNotificationName:kSKURemoteInteractionOff object:nil];
 
 


Groups

Inits

Group members:


Methods

-didInitialize

didInitialize


-(void)didInitialize; 
Discussion

Called once initialization is finished: use to handle events that you want to complete before "viewDidLoad".