1

我是 TVOS 的初学者。

我想使用原生应用程序和 TVMLKIT 在 AppleTV 上创建一个混合应用程序。我的本机应用程序只是一个带有按钮的简单本机应用程序(使用 swift)。

当我们单击一个按钮时,我会使用 TVLMKIT 和 TVJS 启动一个 javascript 应用程序。

我的 TVJS as 使用 Player 来显示视频。视频结束后,我想关闭 TVJS 应用程序并返回到本机 ViewController。

我的问题是,当我回到本机应用程序时,我失去了对本机视图的关注(应用程序被冻结)。

本机视图控制器:

import UIKit
import TVMLKit

class ViewController: UIViewController, TVApplicationControllerDelegate {

var window: UIWindow?
var appController: TVApplicationController?
var appControllerContext = TVApplicationControllerContext();
static let TVBaseURL = "http://localhost:9001/"
static let TVBootURL = "\(ViewController.TVBaseURL)/client/js/application.js"

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

@IBOutlet weak var label: UILabel!

@IBOutlet weak var viewAd: UIView!

@IBAction func clickOnlaunchAd(sender: AnyObject) {
    window = UIWindow(frame: UIScreen.mainScreen().bounds)

    guard let javaScriptURL = NSURL(string: ViewController.TVBootURL) else {
        fatalError("unable to create NSURL")
    }
    appControllerContext.javaScriptApplicationURL = javaScriptURL
    appControllerContext.launchOptions["BASEURL"] = ViewController.TVBaseURL

    appController = TVApplicationController(context: appControllerContext, window: window,delegate: self)

}
@IBAction func clickOnChangeText(sender: AnyObject) {
    label.text = "changed";
}

func appController(appController: TVApplicationController, didStopWithOptions options: [String : AnyObject]?) {
   self.setNeedsFocusUpdate()
   self.updateFocusIfNeeded()
}

func appController(appController: TVApplicationController, evaluateAppJavaScriptInContext jsContext: JSContext){
    let notifyEventToNative : @convention(block) (NSString!) -> Void = {
        (string : NSString!) -> Void in
            print("[log]: \(string)\n")
            self.appController?.stop()
    }
    jsContext.setObject(unsafeBitCast(notifyEventToNative, AnyObject.self), forKeyedSubscript: "notifyEventToNative")
}
}

就在从我的 TVJS 调用“notifyEventToNative”之前,我调用了“navigationDocument.clear();” 清除 TVML 视图。

我可以看到我的本机应用程序,但我无法与之交互。

有任何想法吗?谢谢。

4

1 回答 1

0

我也有同样的问题。我从 UIViewController 打开了一个 TVML 文档。我也失去了焦点。因此,首先我可以建议您在 ViewController 中覆盖名为 preferredFocusedView 的 var。在此方法中,您可以返回对 viewAd 的引用。但更好的解决方案是将 ViewController 包装到 TVML-item 中(使用 TVMLKit 框架)。在这种情况下,我希望您不会有焦点问题,因为您将在整个应用程序中使用 TVML。

于 2016-09-05T16:08:01.450 回答