我加入了信息按鈕,使用下面的代碼的導航欄:如何隱藏UInavigationBar右鍵項目?
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[infoButton addTarget:self action:@selector(showImage:)
forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:infoButton];
現在我想在基於某些條件的代碼的某些部分隱藏這個按鈕。但我沒有找到導航欄中的右欄按鈕項目的任何隱藏屬性?
如果你以後需要使用它,你可以將它保存爲ivar。 – 2011-05-13 17:47:10
@Grady Player:正確的,你可以將它作爲類變量供以後使用, – Jhaliya 2011-05-13 17:49:31
一個類變量會有錯誤的目標不是嗎? – 2011-05-13 17:50:53