Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
默认情况下,如果您将UITextField键盘类型设置Number Pad为显示时,它会在顶部键上方不显示键线 (iOS10)。有没有简单的方法来解决这个问题?
UITextField
Number Pad
有几个选项,包括在布局底部添加一个 1px UIView(可能根据键盘通知显示/隐藏它),但到目前为止最简单的解决方案是添加一个空工具栏作为UITextField的附属视图:
myTextField.inputAccessoryView = UIToolbar()
这解决了这个问题: