我需要将阿拉伯文本粘贴到输入字段中,我可以为 mac 处理它,因为有
if (((Input.GetKey(KeyCode.RightCommand) || Input.GetKey(KeyCode.LeftCommand))
&& Input.GetKeyDown(KeyCode.V)) || Input.GetMouseButtonUp(1))
{
inputField.text = ArabicHelper.faConvert(ClipboardHelper.Clipboard);
}
我将此代码放在更新方法中,复制的文本将在ClipboardHelper. Clipboard但我如何识别用户正在 iOS 或 Android 中粘贴某些内容是否有识别该粘贴的任何事件或键。
翻过高山走不出你
相关分类