0

我裏面UINavigation 欄按鈕項目的按鈕enter image description here爲什麼按鈕寬度在UINavigationbar中發生衝突?

這是我的期望,但真正發生的事情是enter image description here該按鈕的寬度越來越鬱悶,怎麼過來從這個寬度不變?任何想法的朋友。

+0

你有拖拽UIButton在導航欄?或以編程方式設置它?檢查你的UIButton大小。 –

+1

在這個地方使用UIbarbuttonItem在右側 –

+0

從故事板拖放@BadalShah –

回答

1

你是否嘗試在Size Inspector中增加UIButton的寬度?

enter image description here

+0

是的嘗試kenan –

+0

確保按鈕本身被選中,而不是酒吧按鈕項 –

0

設置你的按鈕rightBarButtonItem編程。

UIBarButtonItem *rightbutton = [[UIBarButtonItem alloc] initWithTitle:@"Button Title here" style:UIBarButtonItemStyleDone target:self action:@selector(buttonTapped:)]; 
self.navigationItem.rightBarButtonItem = settingButton; 
相關問題