gpt4 book ai didi

ios - 居中 UINavigationBar 标题文本问题

转载 作者:行者123 更新时间:2023-11-29 10:56:34 36 4
gpt4 key购买 nike

在我的 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;

因为这是在 subview 上,所以它有一个“后退”按钮,由 UINavigationController 添加。所以我认为通过添加 label.textAlignment = NSTextAlignmentCenter; 我的标题会居中,但它实际上是将我的标题从“后退”按钮的末端居中到屏幕的末端。

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

最佳答案

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

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

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

只需根据您希望 titleLabel 移动的距离调整 UIView 的宽度。

关于ios - 居中 UINavigationBar 标题文本问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18004242/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com