0
我有一個工具欄按鈕如何顯示與相同的工具欄按鈕/隱藏搜索欄
UIBarButtonItem *systemItem2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(pressButton2:)];
systemItem2.style = UIBarButtonItemStyleBordered;
和按壓動作
- (void) pressButton2:(id)sender{
mapSearch.hidden = NO;
}
在viewWillAppear中
- (void)viewWillAppear:(BOOL)animated
{
mapSearch.hidden = YES;
}
我怎樣才能用相同的按鈕顯示和隱藏搜索欄(第二次按)?
非常感謝您! –