1

在我UINavigationBar的多行标题中,我使用以下代码进行设置:

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 480, 50)];
label.backgroundColor = [UIColor clearColor];
label.numberOfLines = 2;
label.font = [UIFont boldSystemFontOfSize: 15.0f];
label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5];
label.textAlignment = NSTextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.text = @"Headloss due to Friction              (Hazen Williams Eq.)";

self.navigationItem.titleView = label;

由于这是在子视图上,它有一个“返回”按钮,由UINavigationController. 所以我认为通过添加label.textAlignment = NSTextAlignmentCenter;我的标题会居中,但它实际上是从我的“返回”按钮的末尾到我的屏幕末尾将我的标题居中。

我怎样才能覆盖它,以便我的标题实际上基于我的屏幕尺寸居中,(基本上,如果不存在后退按钮,默认情况下它的方式)。

4

1 回答 1

2

好问题,这很难。如果我找到一个更优雅的解决方案,我将编辑我的答案,但这就是我想出的:

UIView *spaceView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 30, 20)];

UIBarButtonItem *space = [[UIBarButtonItem alloc] initWithCustomView:spaceView];
self.navigationItem.rightBarButtonItems = [NSArray arrayWithObject:space];

只需调整 UIView 的宽度,即可让 titleLabel 移动多远。

于 2013-08-01T21:09:59.910 回答