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.
在键盘上方显示 UIToolbar带有 a的最佳方式是什么?UITextField
UIToolbar
UITextField
特别是,我正在寻找一种在 iOS 6 中实现这一点的方法。
我试图实现的基本功能类似于 iOS SMS 应用程序,只是默认情况下会出现键盘。
谢谢。
将工具栏添加到情节提要并为其添加插座,或者将工具栏添加到 xib 文件,然后使用要向其添加工具栏的文本字段的 InputAccessoryView,例如
[[NSBundle mainBundle] loadNibNamed:@"KeyboardToolbar" owner:self options:nil]; [textField setInputAccessoryView:keyboardToolbar];