Can I mix UIKit and TVMLKit within one app?

Yes, you can. Displaying TVML templates requires you to use an object that controls the JavaScript Context: TVApplicationController. var appController: TVApplicationController? This object has a UINavigationController property associated with it. So whenever you see fit, you can call: let myViewController = UIViewController() self.appController?.navigationController.pushViewController(myViewController, animated: true) This allows you to push a Custom UIKit viewcontroller onto … Read more