搜索显示控制器不显示搜索栏

发布于 2024-09-26 03:42:09 字数 248 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南冥有猫 2024-10-03 03:42:09

我遇到了这个确切的问题。我会拖动搜索栏,它会作为标题“卡入”表格中的适当位置,但它永远不会显示。

我发现当您呈现下一个视图时,您需要 initWithNibName:

示例:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewSubclass *dvc = [[UITableViewSubclass alloc] initWithNibName:@"UITableViewSubclass" bundle:nil];
    [self.navigationController pushViewController:dvc animated:YES];
    [dvc release];
}

这也是假设您将 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:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewSubclass *dvc = [[UITableViewSubclass alloc] initWithNibName:@"UITableViewSubclass" bundle:nil];
    [self.navigationController pushViewController:dvc animated:YES];
    [dvc release];
}

This is also assuming you dragged the SearchDisplayController into the xib file. It will do all the necessary connections for you.

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文