美文网首页
SwiftUI TextField收起键盘

SwiftUI TextField收起键盘

作者: 印象iOS | 来源:发表于2020-03-25 17:41 被阅读0次

TextField使用numberPad类型键盘没有收起的按键

1. 通过window收起键盘(已过期)

UIApplication.shared.keyWindow?.endEditing(true)

2. 使用UIResponder

UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)

相关文章

网友评论

      本文标题:SwiftUI TextField收起键盘

      本文链接:https://www.haomeiwen.com/subject/yxuxuhtx.html