搜索显示控制器不显示搜索栏
我使用 xCode 提供的模板创建了一个简单的 TableViewController。 然后,我使用 Interface Builder 打开 TableViewController 的 xib 文件,并在 tableView 的顶部拖动/添加一个 uisearchdisplaycontroller。 xCode 自动创建并链接所有插座。 我保存 xib 文件并运行应用程序,但搜索栏未显示!
我还应该做什么才能让搜索栏出现?!?
非常感谢!!!
I created a simple TableViewController using the template offered by xCode.
Then I open the xib file of the TableViewController with Interface Builder and I drag/add a uisearchdisplaycontroller on the top part of the tableView.
xCode automatically creates and link all the outlets.
I save the xib file and I run the app but the searchBar is not displayed!
What else should I do to make appear the searchBar?!?
THANK YOU VERY MUCH!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了这个确切的问题。我会拖动搜索栏,它会作为标题“卡入”表格中的适当位置,但它永远不会显示。
我发现当您呈现下一个视图时,您需要 initWithNibName:
示例:
这也是假设您将 SearchDisplayController 拖到 xib 文件中。它将为您完成所有必要的连接。
希望有帮助。
I was having this exact issue. I would drag the search bar, it would "snap" into place on the table as a header, but it would never show.
I found that when you are presenting the next View you need to initWithNibName:
Example:
This is also assuming you dragged the SearchDisplayController into the xib file. It will do all the necessary connections for you.
Hope that helps.