0
只是試圖從圖像添加一個按鈕導航欄。背後的怪異背景導航欄按鈕項從圖像創建
代碼:
UIBarButtonItem *newConvoButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"convos_new.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(newConvoInit:)];
self.navigationItem.rightBarButtonItem = newConvoButton;
結果:
(這應該只是沒有背景的藍色按鈕,暗圖像。)
使用'UIBarButtonItemStylePlain'風格而不是'UIBarButtonItemStyleBordered'。 – danypata
,沒有區別,但謝謝 – mkc842