如何在tvOS应用中使用原生和TVML?

时间:2016-06-11 16:14:52

标签: tvos

是否可以在tvOS应用中使用原生视图/控制器和TVML?似乎使用TVML需要您设置一个" app控制器"而不是普通的视图控制器。如何在tvOS应用程序中同时使用TVML和本机组件?

1 个答案:

答案 0 :(得分:4)

是的,您可以在同一个应用中同时使用Native和TVML。 您可以在App Delegate的evaluateAppJavaScriptInContext方法中注册您的类对象。

func appController(appController: TVApplicationController, evaluateAppJavaScriptInContext jsContext: JSContext)
    {

        jsContext.setObject(TestClass(), forKeyedSubscript: "testClassObj")
    }

您的TestClass应采用TestClassExport协议。 (我的TestClass在Objective C中。你也可以在Swift中编写它。)

@protocol TestClassExport <JSExport>

- (NSString*)log:(NSString*)string;

@end

@interface TestClass : NSObject <TestClassExport>

-(NSString*)log:(NSString*)string;

@end

现在您可以从Javascript调用Test Class Log方法:

  

testClassObj.log(&#39;来自JS的呼叫&#39;);

如果要显示任何控制器,则可以实现将TV推送到TVApplicationController中的方法。

[_tvAppController.navigationController pushViewController:controller animated:YES completion:nil];

查看此链接了解更多详情 - https://forums.developer.apple.com/thread/18430