gpt4 book ai didi

iphone - 如何覆盖 UISearchBar 中的取消按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:05:57 24 4
gpt4 key购买 nike

我目前正在使用以下方法来阻止取消按钮项出现在搜索栏中。我有一个我想改用的自定义 UIButton

问题是目前内置的取消按钮仍然出现。

- (void)searchDisplayControllerDidBeginSearch:(UISearchDisplayController *)controller
{
controller.searchBar.showsCancelButton = NO;
}

谢谢你的帮助

最佳答案

你可以使用这个隐藏你的取消按钮

- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
{
[searchBar setShowsCancelButton:NO animated:YES];
}

关于iphone - 如何覆盖 UISearchBar 中的取消按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13799074/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com