我有一個問題,到目前爲止我找不到解決方案。我在我的應用程序中添加了一項新功能,並希望在我的UINavigationBar的左側添加第二個UIBarButtonItem。出於某種原因,iOS 7將此作爲button1,grandCanyon,button2。我無法找到任何方法來消除這兩個按鈕之間的荒謬間隔,這也會導致我的標題不一致。任何人都可以幫忙!?有針對這個的解決方法嗎!?iOS 7 UIBarButtonItem荒謬的間距問題
代碼:
UIBarButtonItem *firstButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"firstButton"] style:UIBarButtonItemStylePlain target:self action:@selector(showSettings)];
UIBarButtonItem *secondButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"secondButton"] style:UIBarButtonItemStylePlain target:self action:@selector(showAttachments)];
[self.navigationItem setLeftBarButtonItems:[NSArray arrayWithObjects:firstButton, secondButton, nil]];
顯示設置按鈕的代碼。 – rmaddy
將代碼放在您的問題中,以便人們可以閱讀它。 – rmaddy
糟糕,完成了。沒有意識到我可以編輯帖子,對不起。 – KelticKoder