有没有办法消除“无结果”来自 UISearchDisplayController 的标签?

发布于 2024-08-11 00:40:39 字数 147 浏览 4 评论 0原文

我有一个使用新的 sdk3 UISearchDisplayController 的 Three20 控制器。 我还有一个从网络加载的模型,似乎无论我做什么, UISearchDisplayController 的默认行为都是显示“无结果”标签。 有没有办法让它消失并显示其他东西?

I have a three20 controller that is using the new sdk3 UISearchDisplayController.
I also have a model that is loaded from the network, it seems that no matter what I do the default behavior for the UISearchDisplayController is show "No Results" label.
Is there a way to make it go away and show something else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

拥有 2024-08-18 00:40:39

要修改“无结果”文本,您需要在 TTTableViewDataSource 中实现 titleForEmpty 方法。

- (NSString*)titleForEmpty {
  return @"No names found";
}

To modify the "No Results" text you need to implement the titleForEmpty method in your TTTableViewDataSource.

- (NSString*)titleForEmpty {
  return @"No names found";
}
奢望 2024-08-18 00:40:39

在 Three20 源代码中搜索字符串“No Results”并将其更改为@“”。

search the Three20 source code for the string "No Results" and change it to @"".

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