我有一个工具栏按钮
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;
}
如何使用相同的按钮(第二次按下)显示和隐藏搜索栏?