正如标题所示,我想知道如何使用TVML模板检测键盘输入并使用Apple Catalog Project
中的TVJS设计模式例如:当显示Search.xml.js,并且用户选择键盘上的“a”键时,如何检测到他们选择了“a”键?
答案 0 :(得分:3)
在深入了解Apple Docs后,我找到了答案。
的参考资料这是一个使用它的例子:
var doc = Presenter.makeDocument(resource);
var searchField = doc.getElementById("SearchField"); //I added an id to the searchField to make it easy to access.
var keyboard = searchField.getFeature("Keyboard");
keyboard.onTextChange = function () {
swiftLog(keyboard.text);
};