22

我正在尝试自定义我的 UINavigationBar 字体,在我的应用程序委托中使用以下 iOS 5 代码application:didFinishLaunchingWithOptions

if ([[UINavigationBar class] respondsToSelector:@selector(appearance)]) 
{
    [[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: 
                                                          [UIColor whiteColor], UITextAttributeTextColor,
                                                          [UIColor blackColor], UITextAttributeTextShadowColor,
                                                          [NSValue valueWithUIOffset:UIOffsetMake(1, 0)], UITextAttributeTextShadowOffset,
                                                          [UIFont fontWithName:kDefaultFont size:0.0], UITextAttributeFont, 
                                                          nil]];
}

它工作正常,导航栏使用我的字体呈现。伟大的。

参考文献我发现建议您可以使用零字体大小,它会调整字体大小以适应您的导航栏(对于横向布局的较短导航栏,使用稍小的字体)。它确实选择了与导航栏高度完美匹配的字体大小。但是看起来如果你从纵向到横向再返回,导航栏标题标签的宽度会被搞砸,所以当你第一次查看时,显示为“长标题栏”的标题看起来不错在纵向中,当您在横向(使用适当较小的字体)查看它时看起来很好,但是当我回到纵向时,字体正确地恢复为较大的字体,但标题文本本身被截断,变成“长.. ." 即使完整标题有足够的空间。

显然,我可以只指定一个实际的字体大小(在这种情况下,我看不到这种截断行为),但随后我手动确定要使用的大小。更糟糕的是,横向和纵向的字体大小相同,所以现在我使用的字体大小适合较短的横向导航栏标题,并且标题小于较高的纵向导航栏所需的字体大小。

有没有人有过使用setTitleTextAttributes更改字体的经验[UINavigationBar appearance],使字体大小在纵向和横向之间发生变化,但是当您在横向返回纵向时没有截断标题?我将寻求各种笨拙的解决方法,但如果您在这个问题上有任何经验,请告诉我。

更新:

在向 Apple 提交这个 bug 的过程中,我决定演示如何重现该问题:

  1. 在 Xcode 4.3.2 中创建新的 iOS 主从应用程序。

  2. 将上面的setTitleTextAttributes代码放在应用程序委托中application:didFinishLaunchingWithOptions(我使用了字体@“GillSans”)。

  3. 转到 MasterViewController 并添加说self.title = @"Long Title";

  4. 注释掉UIBarButtonItem *addButton代码。

  5. 运行程序。请注意标题正确显示“长标题”。旋转到横向。看起来还是不错的。旋转回纵向,即使有足够的空间,标题现在也会显示“Long...”。

  6. 奇怪的是,如果您恢复UIBarButtonItem *addButton代码,标题就会正常工作。但是,如果您删除 UIBarButton 项,或者将其替换为使用initWithTitle而不是的按钮,initWithBarButtonSystemItem则在从纵向旋转到横向然后再返回纵向后,导航栏标题会出现问题。

4

5 回答 5

3

顺便说一句,我没有指出 Apple 回复了我的错误报告,并承认这是一个已知问题。希望它会尽快得到解决!

于 2012-06-05T12:36:49.550 回答
1

我认为一个好的解决方案是在设备旋转后刷新导航栏的标题。就像是

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {

        self.navigationItem.title = @"Your title";

}

希望这可以帮助!

于 2012-04-14T09:31:42.937 回答
1

根据@Abramodj 的回复(不起作用),我尝试了这个。据推测,该解决方案中没有发生任何事情,因为系统注意到文本实际上并没有改变。切换到什么都没有,然后再重新整理出来。

经过测试,绝对可以在 iOS5.0 上运行。

// iOS5 has a bug where if you switch orientation the title bar text gets cut off...
-(void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation     {
    self.navigationItem.title = @"";
    self.navigationItem.title = @"Your Title";
}
于 2012-10-17T10:45:20.367 回答
1

以下是我针对此问题的解决方法,这是在每种情况下出现在我的解决方法实现旁边的注释,以提醒我自己为什么要实现这段代码:

// when using an appearance proxy to set a custom font for the navigation bar (generally in
// application:didFinishLaunchingWithOptions: in the appDelegate code) for both iOS 5 & 6,
// there's a glitch that incorrectly auto-truncates the title in the following cirumstances:
//
// 1) when a 0.0 value is used for UITextAttributeFont in the titleTextAttributes dictionary
//    and a device/simulator running pre-iOS 5 rotates back to portrait from landscape
//    solution: perform [self.navigationController.navigationBar setNeedsLayout] in
//              didRotateFromInterfaceOrientation: the view controller in which the
//              auto-truncation is incorrectly occurring for systemVersion < 6.0
//
// 2) when a view initially loads running iOS 6 for a non-0.0 value for the UITextAttributeFont
//    in the titleTextAttributes dictionary
//    solution: perform [self.navigationController.navigationBar setNeedsLayout]
//              in viewDidLoad in the view controller in which the auto truncation is
//              incorrectly occurring for systemVersion >= 6.0

因此,对于我可以使用 0.0 值UITextAttributeFont但必须继续支持 iOS5 的情况,我使用解决方案 (1):

#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_6_0
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    if (UIInterfaceOrientationIsPortrait(self.interfaceOrientation)
        && UIDevice.currentDevice.systemVersion.floatValue < 6.0)
        [self.navigationController.navigationBar setNeedsLayout];
}
#endif

在我想要支持 iOS 6 并在视图首次出现时修复故障而无需重新编写 MyAppAppearance 类方法的几个遗留代码案例中,我为 my 设置了非 0.0 值[UINavigationBar appearance] titleTextAttributes,我发现它更容易实施解决方案(2),因此:

- (void)viewDidLoad
{
    [super viewDidLoad];
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_6_0
    if (UIDevice.currentDevice.systemVersion.floatValue >= 6.0)
#endif
        [self.navigationController.navigationBar setNeedsLayout];

    // … other viewDidLoadCode

__IPHONE_OS_VERSION_MIN_REQUIRED括号只是帮助提醒我,如果将来需要,哪些代码最终会消失,哪些可能必须保留。)

要更准确地了解此处发生的情况,尤其是在旋转的情况下,请在切换慢动画的情况下运行模拟器。

于 2012-11-18T08:05:47.773 回答
0

即使您没有像 Ben Clayton 描述的那样进行方向切换,在通过外观应用更改后 UINavigationBar 标题文本被切断的错误也可能发生。我已经看到这个问题发生在只支持纵向的应用程序上。

[self.navigationItem setTitle:@""];
[self.navigationItem setTitle:@"The real title"];

即使在这种情况下也能正常工作。

顺便说一句,我从 iOS 5 开始就遇到了这个问题。刚刚在 iOS 6 中对其进行了测试,但它仍然存在。什么鬼,苹果?

于 2013-07-25T22:35:01.443 回答