使用 SearchBarDisplay 时,如何更改取消按钮的名称

发布于 2025-01-01 12:22:01 字数 189 浏览 1 评论 0原文

当设置 SearchBarDisplay 时,使用 IB 或以编程方式,它会在搜索窗口右侧获得一个取消按钮。按钮上的文字显示“取消”。如何将文本更改为另一种语言。 我知道如何仅使用 SearchWindow 更改导航栏上“完成”按钮的文本,但这似乎不适用于默认的此按钮。

类似的问题是,如果不匹配,表中会出现文本“无结果”。 如何更改为另一种语言?

When setting a SearchBarDisplay, using IB or programmatically it gets a Cancel button right to the search window. The text on the button says "Cancel". How do I change text to another language.
I know how to change text for a Done button at the Navbar using only SearchWindow but that does not seem to work for this button which comes as default.

And a similar question is the text "No result" coming up in the table if no match.
How change to another language?

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

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

发布评论

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

评论(1

倦话 2025-01-08 12:22:01

您可以通过以下方式更改取消的标题,但搜索栏的标题:

for (UIButton *v in srchBar.subviews) 
{
    NSLog(@"%@",v);

    if ([v isKindOfClass:[UIButton class]])
    {
        [v setTitle:@"Hello" forState:UIControlStateNormal];
    }
}

现在根据您的语言设置此标题。

我尝试了这个并且它在我的演示应用程序中工作。

如果它对您不起作用,请告诉我。

You can change title of you cancel but of searchBar by this :

for (UIButton *v in srchBar.subviews) 
{
    NSLog(@"%@",v);

    if ([v isKindOfClass:[UIButton class]])
    {
        [v setTitle:@"Hello" forState:UIControlStateNormal];
    }
}

now set this title as per your language.

i tried this and its working in my demo app.

let me know if it wont work for you.

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