0

我有一个工具栏按钮

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

和新闻行动

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

在视图中会出现

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

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

4

1 回答 1

4

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

mapSearch.hidden = !mapSearch.hidden;

或者

mapSearch.hidden = (mapSearch.hidden) ? NO : YES;
于 2012-06-09T07:51:19.220 回答