iPhone 应用程序中的收件人栏
我想在 iPhone 应用程序中插入一个收件人栏,当我在其上键入字符时,该栏会列出地址簿项目,与 iPhone SMS 本机应用程序中使用的相同。我该怎么办?
I would to insert a recipients bar in an iPhone application, a bar that list address book items when I type chars on it, the same that is used in the iPhone SMS native application. How can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是使用
UISearchDisplayController
实现的。您可以在 Apple 的 TableSearch 中了解如何执行此操作示例代码。This is achieved using a
UISearchDisplayController
. You can see how to do this in Apple's TableSearch example code.Apple 没有为该类型的输入字段提供公共 API。你可以自己实现,也可以寻找别人的实现,比如
JSTokenField
。Apple doesn't provide a public API for that type of input field. You can implement it yourself, or you can look for someone else's implementation, like
JSTokenField
.