2013-07-20 52 views
0

我想從導航欄左側的按鈕中刪除文本,但我已到處找,找不到任何東西。我希望按鈕只顯示一個圖像,並且它可以做到這一點,但是文本會覆蓋它。我如何刪除文本?刪除iOS導航條上的文本欄按鈕。

回答

1
UIImage* image = [UIImage imageNamed:@"yourImage"]; 
CGRect frameimg = CGRectMake(0, 0, image.size.width, image.size.height); 
UIButton *yourButton = [[UIButton alloc] initWithFrame:frameimg]; 
[yourButton setBackgroundImage:image forState:UIControlStateNormal]; 
UIBarButtonItem *button =[[UIBarButtonItem alloc] initWithCustomView:yourButton]; 
self.navigationItem.rightBarButtonItem=button; 
+0

@ user2296494有用嗎? –

0

剛剛成立

self.navigationItem.title = @""; 

在前面視圖 - 控制

+0

是的,但這也刪除了標題 –