如何将 UISearchDisplayController 添加到 UIView 中?
如何将 UISearchDisplayController 添加到 UIView 中?界面生成器不会让我这样做。
How can I add a UISearchDisplayController to a UIView? Interface builder won't let me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UISearchDisplayController 无法添加到 UIView,因为它不是从 UIView 继承的。您可以使用 IBOutlet 在界面构建器中添加 UISearchBar,然后以编程方式使用该 UISearchBar 创建 UISearchDisplayController。
A UISearchDisplayController cannot be added to a UIView because it doesn't inherit from a UIView. You can add a UISearchBar in Interface builder with an IBOutlet and then create a UISearchDisplayController with that UISearchBar programmatically.
只需在代码中执行即可,例如(假设视图控制器是 vc):
Just do it in code e.g. (assuming the view controller is vc):