ツールバーボタンがあります
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;
}
同じボタン (2 回目のプレス) で検索バーを表示および非表示にするにはどうすればよいですか?