gpt4 book ai didi

ios - 如何使用相同的工具栏按钮显示/隐藏搜索栏

转载 作者:行者123 更新时间:2023-11-28 19:18:13 26 4
gpt4 key购买 nike

我有一个工具栏按钮

UIBarButtonItem *systemItem2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(pressButton2:)];
systemItem2.style = UIBarButtonItemStyleBordered;

和一个按下 Action

- (void) pressButton2:(id)sender{
mapSearch.hidden = NO;
}

在viewWillAppear中

- (void)viewWillAppear:(BOOL)animated
{
mapSearch.hidden = YES;
}

如何使用同一个按钮(第二次按下)显示和隐藏搜索栏?

最佳答案

我知道您想切换 mapSearch.hidden。这是一个解决方案

mapSearch.hidden = !mapSearch.hidden;

mapSearch.hidden = (mapSearch.hidden) ? NO : YES;

关于ios - 如何使用相同的工具栏按钮显示/隐藏搜索栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10959323/

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