gpt4 book ai didi

iphone - 访问外部包中的图像

转载 作者:可可西里 更新时间:2023-11-01 05:31:43 25 4
gpt4 key购买 nike

我创建了一个名为 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com