Xcode 7,资产目录通用设备背景图像支持?

时间:2015-10-05 12:42:23

标签: ios iphone xcode xcode7 xcasset

我已经看过各种关于图像尺寸的旧帖子,但我找不到任何最新信息,甚至不知道是否可以通过资产目录为所有iPad和iPhone屏幕尺寸提供图像。?

这是我发现的最好的帖子,但在Xcode 7中它没有显示“Retina 4 2x”或iPhone 6/6 +

Xcode 6 - xcassets for universal image support

在xcode 7中有一个通用选项,但这三个图像不支持所有设备尺寸。

我见过您可以在资产目录之外提供自己的图片的选项,但我真的很想使用资产目录。

How to use xcassets/universal background images for different iPhones/iPads?

编辑: 看起来我可能不得不去无资产目录路线:(

A)

我希望将来证明这个解决方案,所以它会退回,如果需要,请调整最合适的图像,因为我不确定会发生。

NSNumber *screenWidth = @([UIScreen mainScreen].bounds.size.width);
NSString *imageName = [NSString stringWithFormat:@"name-%@w", screenWidth];
UIImage *image = [UIImage imageNamed:imageName];

B)

或许这段代码更好?虽然我不确定它与哪种尺寸有关,但由于它不支持x3图像,它也有点过时了?

#import <UIKit/UIKit.h>

@interface UIImage (DefaultImage)

// uses statusbar orientation
+ (UIImage *)defaultImage;

//uses given orientation
+ (UIImage *)defaultImageForOrientation:(UIInterfaceOrientation)orient;

@end
@implementation UIImage (DefaultImage)

+ (UIImage *)defaultImage {
    return [self defaultImageForOrientation:[[UIApplication sharedApplication] statusBarOrientation]];
}

+ (UIImage  *)defaultImageForOrientation:(UIInterfaceOrientation)orient {
    // choose the correct launch image for orientation, device and scale
    NSMutableString *launchImageName = [[NSMutableString alloc] initWithString:@"Default"];
    BOOL isPad = ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad );
    if ( isPad ) {
        BOOL isLandscape = UIInterfaceOrientationIsLandscape(orient);
        NSString *imageOrientation = (isLandscape) ? @"Landscape" : @"Portrait";

        BOOL isRetina = ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] && [[UIScreen mainScreen] scale] == 2.0);
        NSString *scaleString = (isRetina) ? @"@2x" : @"";

        // Default-Landscape~ipad.png
        // Default-Landscape@2x~ipad.png
        // Default-Portrait~ipad.png
        // Default-Portrait@2x~ipad.png
        launchImageName = [NSMutableString stringWithFormat:@"%@-%@%@.png", launchImageName, imageOrientation, scaleString];       
    } else {
        if ( CGRectGetHeight([UIScreen mainScreen].bounds) > 480.f) {
            // Default-568h.png
            launchImageName = [NSMutableString stringWithFormat:@"%@-568h.png", launchImageName];
        } else {
            // Default.png
            // Default@2x.png
            launchImageName = [NSMutableString stringWithFormat:@"%@.png", launchImageName];
        }
    }
    return [UIImage imageNamed:launchImageName];
}

@end

免责声明:取自https://github.com/Daij-Djan/DDUtils

C)

这看起来也很不错,但它正在重新调整尺寸,而不是使用实际的清晰图像而且没有后退。

https://gist.github.com/kevindelord/fe2e691d06ab745fbb00

NSString *extension = @"";      // iPhone 3GS and earlier
if (scale == 3.f) {
    extension = @"@3x";         // iPhone 6 Plus
} else if (scale == 2.f && h == 568.0f && w == 320.0f) {
    extension = @"-568h@2x";    // iPhone 5, 5S, 5C
} else if (scale == 2.f && h == 667.0f && w == 375.0f) {
    extension = @"-667h@2x";    // iPhone 6
} else if (scale == 2.f && h == 480.0f && w == 320.0f) {
    extension = @"@2x";         // iPhone 4, 4S
} else if (scale == 1.f && h == 1024.0f && w == 768.0f) {
    extension = @"-512h";       // iPad Mini, iPad 2, iPad 1
} else if (scale == 2.f && h == 1024.0f && w == 768.0f) {
    extension = @"-1024h@2x";   // iPad Mini 3, iPad Mini 2, iPad Air, iPad Air 2
}
return extension;

1 个答案:

答案 0 :(得分:0)

我刚刚修改了Contents.json文件并添加了Retina 4 2x:

{
      "idiom" : "iphone",
      "filename" : "home-bgimage-iphone5@2x.png",
      "subtype" : "retina4",
      "scale" : "2x"
}

Retina 4 2x出现在资产目录中,用于该图像集:)

要为iPhone和iPad提供不同的图像,您只需选择“设备”部分下的iPhone和iPad复选框,然后取消选择“通用”图标。

但是我仍然不知道如何处理iPhone 6.我总是为iPhone 6设置一个不同的图像,只有一个图像并检查代码,如果该设备是iPhone6或iPhone6模拟器并设置为而不是图像。