TvOS模拟器键盘停止工作?

时间:2015-11-14 14:19:19

标签: tvos

有谁知道如何修复TvOS模拟器停止接受键盘输入的问题?我使用箭头键导航模拟器并移动焦点,它工作正常,直到昨天。我尝试删除模拟器并删除并重新安装Xcode,从github上清理完我的iMac上的代码,键盘仍然没有向文本字段发送事件,导航无法使用箭头键。< / p>

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:4)

抱歉 - 这很容易解决。转到硬件菜单,然后选择键盘 - >连接硬件键盘。我必须尝试使用​​键盘快捷键来完成应用程序的干净构建,这是Shift-Command-Option-K和Connect硬件键盘有一个非常相似的键命令来切换,它是Shift-Command-K。

答案 1 :(得分:1)

我的情况是,自iOS 13.4起,键盘部分停止工作。在该版本中,byte[] imageBytes = new byte[1024]; // transform to bufferImage BufferedImage bufferedImage = ImageIO.read(new ByteArrayInputStream(imageBytes)); // if you want to do some operations to the image, like resize, // use the lib (net.coobird.thumbnailator) BufferedImage image = Thumbnails.of(bufferedImage).forceSize(WIDTH, HEIGHT) .outputFormat("bmp").asBufferedImage(); 的实现已更改,您必须为所有未处理的按键调用pressesBegan,否则就不再使用箭头键。

super