如何将默认文本更改为“无结果”在 UISearchDisplayController 中

发布于 2025-01-03 09:57:03 字数 122 浏览 0 评论 0原文

我有一个由 xib 设置的 UISearchBarUISearchBarDisplayController 。 搜索无结果后,表中某些行显示“无结果”。 如何修改默认文字?

I have a UISearchBar and a UISearchBarDisplayController set up by a xib.
After a search with no result it says "No result" some lines down in the table.
How to modify default text?

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

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

发布评论

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

评论(2

┊风居住的梦幻卍 2025-01-10 09:57:03

你也可以试试这个。

  1. 在搜索显示控制器的表视图委托/数据源中,将 -numberOfRowsInSection: 抑制为最小值 1。
  2. 然后在 -cellForRowAtIndex: 方法中,如果数据源计数为零,请将表视图单元格的标签更改为“搜索”之类的内容……”

You can also try this.

  1. In your search display controller's table view delegate/data source, suppress -numberOfRowsInSection: to minimum of 1.
  2. Then in your -cellForRowAtIndex: method, if your data source count is zero, change the label of the table view cell to something like "Searching..."
墨落成白 2025-01-10 09:57:03
@interface ClassName : UIViewController {
    UILabel                     *noResultLabel;
    UISearchDisplayController   *searchController;
}

@implementation ClassName

- (id) init {
    // bla bla bla bla
    // some more bla
    // setup your UISearchDisplayController and stuffz
    noResultLabel = nil;
}

- (void) changeNoResultsText:(NSString *)text {
    if (noResultLabel == nil) {
        for (id subview in searchController.searchResultsTableView.subviews) {
            if ([subview isKindOfClass:[UILabel class]]) {
                if ([((UILabel *)subview).text isEqualToString:@"No Results"]) {
                    if (noResultLabel == nil) noResultLabel = subview;
                }
            }
        }
    }

    if (noResultLabel != nil) noResultLabel.text = text;
}

- (void)searchBarSearchButtonClicked:(UISearchBar *)bar { 
    [self changeNoResultsText:@"Searching..."];
}

- (BOOL) searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
    [self changeNoResultsText:@"Searching full search..."];
    return YES;
}

@end
@interface ClassName : UIViewController {
    UILabel                     *noResultLabel;
    UISearchDisplayController   *searchController;
}

@implementation ClassName

- (id) init {
    // bla bla bla bla
    // some more bla
    // setup your UISearchDisplayController and stuffz
    noResultLabel = nil;
}

- (void) changeNoResultsText:(NSString *)text {
    if (noResultLabel == nil) {
        for (id subview in searchController.searchResultsTableView.subviews) {
            if ([subview isKindOfClass:[UILabel class]]) {
                if ([((UILabel *)subview).text isEqualToString:@"No Results"]) {
                    if (noResultLabel == nil) noResultLabel = subview;
                }
            }
        }
    }

    if (noResultLabel != nil) noResultLabel.text = text;
}

- (void)searchBarSearchButtonClicked:(UISearchBar *)bar { 
    [self changeNoResultsText:@"Searching..."];
}

- (BOOL) searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
    [self changeNoResultsText:@"Searching full search..."];
    return YES;
}

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