具有多行的UIBarButtonItem显示为低分辨率

时间:2012-08-21 13:55:58

标签: ios uinavigationbar uibarbuttonitem

我正在尝试使用两行文本创建一个UIBarButtonItem,例如iPod.app中的“正在播放”按钮

我正在使用此主题中提供的代码:How can we put two line in UIBarButtonItem in Navigation Bar

但是在设备上运行时,按钮会以低分辨率显示,如下所示:

https://www.dropbox.com/s/vp5vn9mmq0f96n8/2012-08-21%2014.57.12.png

为什么呢?我不想使用静态图片,因为我的应用程序是本地化的。

1 个答案:

答案 0 :(得分:1)

要解决此问题,请使用UIGraphicsBeginImageContextWithOptions而不是UIGraphicsBeginImageContext(如果设备是视网膜)。然后将上下文的比例设置为mainScreen比例。

+ (UIImage *)nowPlayingButton {

    UILabel * addCustomLabel = 
            [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 25)];
    addCustomLabel.text = 
        NSLocalizedString(@"NOW_PLAYING_NEWLINE", 
                          @"Now playing text divided on two lines");
    addCustomLabel.textColor = [UIColor whiteColor];
    addCustomLabel.font = [UIFont boldSystemFontOfSize:10];
    addCustomLabel.numberOfLines = 2;
    addCustomLabel.backgroundColor = [UIColor clearColor];
    addCustomLabel.textAlignment = UITextAlignmentCenter;

    CGSize size = addCustomLabel.bounds.size;

    static CGFloat scale = -1.0;

    UIScreen *screen = [UIScreen mainScreen];
    scale = [screen scale];

    if(scale > 0.0) {
        UIGraphicsBeginImageContextWithOptions(size, NO, scale);
    } else {
        UIGraphicsBeginImageContext(size);
    }

    CGContextRef context = UIGraphicsGetCurrentContext();
    [addCustomLabel.layer renderInContext: context];
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    CGContextRelease(context);

    return img;
}