ios – 从xcassets加载UIImage

我正在尝试从 Image.xcassets文件夹加载启动图像,但无济于事.在SO上有其他 answer(和 this one)声称可以回答它但是它们的主要解决方案,只需加载像这样的图像

UIImage *image =  [UIImage imageNamed:@"Default@2x"];

为我回报为零.

文件名正确命名,项目设置为使用资产.

有谁知道我是怎么做的,或者我做错了什么?

提前致谢.

编辑:

screenshot of my assets folder

编辑2:我的最终代码

-(void) loadSplashImage{
if ([self isiPad]){
    self.imageViewSplash.image =  [UIImage imageNamed:@"Default-Portrait"];
}
else{
    if (self.view.frame.size.height == 480){
        self.imageViewSplash.image =  [UIImage imageNamed:@"Default"];
    }
    else if (self.view.frame.size.height == 568){
        self.imageViewSplash.image =  [UIImage imageNamed:@"Default-568h"];
    }
    else if (self.view.frame.size.height == 667){
        self.imageViewSplash.image =  [UIImage imageNamed:@"Default-667h"];
    }
}

}

请注意它仅适用于Portrait.

解决方法

您不必在名称中指定图像的大小.它会自动加载最适合运行应用程序的设备的大小.所以你的代码应该是.

UIImage *image =  [UIImage imageNamed:@"Default"];

其中default是来自xcassets的资源名称,即您在左侧列表中看到的名称.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...