I'm running thought the App Programming Guide for tvOS and in the section on building a client server app (particularly step 5 where it has you replace the method implimentation for application:didfinishLaunchingWithOptions:). I get an error on the line 20, which is self.appController = TVApplicationController(context: appControllerContext, window: self.window, delegate: self), Value of type 'AppDelegate' has no member 'appController'. I'm in Xcode 7.1 beta in the tvOS template for a single view application. Anybody else experience this?
getting error with the client server walkthrough on the development guide
You need to add a property `appController`. That apparently got missed in the snippet.
Thank you, I was wondering if it was an inherited property of something that I wasn't inheriting or what.
In other words, add the following below the class definition of AppDelegate:
var appController: TVApplicationController?