1

iPod.appの「NowPlaying」ボタンのように、2行のテキストでUIBarButtonItemを作成しようとしています。

このスレッドで提供されているコードを使用しています:ナビゲーションバーのUIBarButtonItemに2行を配置するにはどうすればよいですか?

ただし、デバイスで実行すると、ボタンは次のように低解像度で表示されます。

https://www.dropbox.com/s/vp5vn9mmq0f96n8/2012-08-21%2014.57.1​​2.png

なんで?アプリがローカライズされているため、静止画像を使用したくありません。

4

1 に答える 1

1

これを修正するには、デバイスが網膜の場合、UIGraphicsBeginImageContextの代わりにUIGraphicsBeginImageContextWithOptionsを使用します。次に、コンテキストのスケールを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;
}
于 2012-08-23T16:47:23.447 に答える