Используйте следующий фрагмент кода в методе viewDidLoad UIViewController.
UILabel *label = [[UILabel alloc] init];
label.text = @"Center Label";
label.frame = CGRectMake(0, 0, 100, 30);
label.textAlignment = NSTextAlignmentCenter;
UIBarButtonItem *customButton = [[UIBarButtonItem alloc] initWithCustomView:label];
self.navigationItem.titleView = customButton.customView;
Код не требует пояснений.При необходимости измените этикетку и другие необходимые вещи.