我创建了一个名为 applausible.bundle 的包,我将包放在支持文件中。这是我的代码

NSBundle* myBundle;
myBundle = [NSBundle bundleWithPath:@"/Library/applausible.bundle"];
NSString *path = [myBundle pathForResource:@"splash.png" ofType:nil];
[imageName setImage:[UIImage imageNamed:path]];

在这里,我无法在 ImageView 上显示图像。我尝试过的另一种方法是在运行应用程序时使用 xib 将图像放置在 ImageView 上。控制台中的输出是这样的
无法加载从标识符为“com.xxxxxxx.ImageSample”的包中的 Nib 引用的“splash_screen high resolution.png”图像。谁能告诉我哪里出错了。最后,我的目标是在外部包中的 UIImageview 上显示图像。

最佳答案

这可能对你有帮助。

    NSString bundlePath = [[NSBundle mainBundle] pathForResource:@"applausible" ofType:@"Bundle"];
NSLog(@"Bundle path is %@",bundlePath);
NSBundle myBundle;
myBundle = [NSBundle bundleWithPath:bundlePath];
NSString *path = [myBundle pathForResource:@"splash_screen high resolution" ofType:@"png"];
UIImage *image=[[UIImage alloc]initWithContentsOfFile:path];
[imageName setImage:image];

请尝试一下。

关于iphone - 访问外部包中的图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9678747/

10-09 07:03