-2

我需要爲我的新iOS 7應用程序使用自定義後退按鈕圖像。當我使用Storyboard並通過Attributes inspector添加圖像時,這是XCode爲我呈現的內容: enter image description hereiOS7 - 導航控制器 - 自定義後退按鈕

有人知道爲什麼導航控制器的行爲是這樣嗎?我經常將@ 2x PNG圖像放入我的表格視圖中的欄按鈕項目(在導航項目下)。

@interface MEDevicesViewController : UITableViewController 

在我的應用程序中,我使用ECSlidingViewController,我有導航控制器內表視圖。這是我的導航控制器。

讚賞任何幫助...

+0

'@interface MEDevicesViewController:UITableViewController'沒有相關性。顯示一些真實的代碼。 –

回答

0
UIButton * button= [UIButton buttonWithType:UIButtonTypeCustom]; 

[button setFrame:CGRectMake(0, 0, 51, 31)]; 
[button setImage:[UIImage imageNamed:@"back_btn.png"]forState:UIControlStateNormal]; 
[button addTarget:self 
      action:@selector(backbtnpressed:)    
forControlEvents:UIControlEventTouchUpInside]; 

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithCustomView:button]; 
self.navigationItem.leftBarButtonItem = barButton; 


-(IBAction)backbtnpressed:(id)sender 
{ 
    [self.navigationController popViewControllerAnimated:YES]; 
} 
+0

嘗試過,不工作的ECSlidingViewController弄亂的東西.... –

相關問題