1

正如标题所示,我想知道如何使用 TVML 模板和使用Apple Catalog Project中的 TVJS 设计模式检测键盘输入

例如:当显示 Search.xml.js 时,用户选择了键盘上的 'a' 键,如何检测到他们选择了 'a' 键?

4

1 回答 1

3

在深入研究 Apple Docs 之后,我找到了答案。

这是键盘 onTextChange的参考

这是它的使用示例:

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);
    };
于 2015-11-04T00:11:21.900 回答