0
如何刪除dafult按鈕將我的自定義按鈕放置在導航欄中?目前的問題是我的自定義按鈕超過了默認按鈕。 如何刪除默認按鈕?
請看看截圖,它會更清晰。
我用下面的代碼得到這個:
- (void)viewDidLoad
{
UIImage *menuImage = [UIImage imageNamed:@"barMenuButton.png"];
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithImage:menuImage style:UIBarButtonItemStylePlain target:self action:@selector(ShowLeftMenu:)];
[self.navigationItem setRightBarButtonItem:addButton];
}