我必须通过听写在手表OS2 sdk设计的手表应用程序中输入信用卡的CVV号码。但是号码按原样打印。 不是安全的密钥。
let textChoices = ["123","124","236","456", "345", "Seriously, just order Pizza!!"]
presentTextInputControllerWithSuggestions(textChoices,
allowedInputMode: WKTextInputMode.Plain,
completion: {(results) -> Void in
if results != nil && results!.count > 0 { //selection made
let aResult = results?[0] as? String
self.labelPrint.setText(aResult)
//{
//self.labelPrint.setText(aResult)
//}
}})
有人可以建议如何将输入的数字设为安全密钥吗?
由于
答案 0 :(得分:0)
我在Apple Watch中创建了一个用于安全文本输入的演示来完成我的要求。我认为它也会对你有所帮助。我将代码上传到我的git帐户。在这里,我分享了Project Repo的链接:
https://github.com/sagargondaliya/SecureTextInputForAppleWatch
Apple Watch的输入控制器