我是 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 视图。
我可以看到我的本机应用程序,但我无法与之交互。
有任何想法吗?谢谢。