我想在Swift 2中获取UITextInputMode,但是UITextInputMode.activeInputModes()
崩溃。
let x = UITextInputMode.activeInputModes() // crash here
for t in x {
print(t)
}
最佳答案
正如提到的 HERE ,这是 Xcode 7 中的一个错误。其中说:
关于ios - UITextInputMode.activeInputModes() 在 Swift 2 中崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32691424/