2013-08-09 2 views

ответ

1

Вы могли бы добавить еще UIBarButtonItem как 'распорки', как это:

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"Button" style:UIBarButtonItemStyleBordered target:self action:@selector(buttonTapped)]; 
UIBarButtonItem *spacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil]; 
spacer.width = 125.0f; 

[self.navigationItem setRightBarButtonItems:[NSArray arrayWithObjects:spacer, barButton, nil]]; 
+0

UIBarButtonSystemItemFixedSpace не сконцентрируется когда поворот. Как исправить? –

+0

Я отредактирую с исправлением. – hgwhittle

+0

@iT. Попробуйте мой ответ –

2

Попробуйте это:

UIButton *titleButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 
[titleButton setFrame:CGRectMake(0, 0, 170, 35)]; 
self.navigationItem.titleView = [[UIBarButtonItem alloc] initWithCustomView:titleButton]; 
+0

Сбой приложения. – Jameson

Смежные вопросы