gpt4 book ai didi

objective-c - 访问使用 xcode/cocoa 创建的应用程序包中的资源

转载 作者:行者123 更新时间:2023-12-03 16:24:08 24 4
gpt4 key购买 nike

我正在尝试做一个简单的事情,需要创建一个 NSImage,并且我想将 .png 文件放在我的包内容的资源中。我将 .png 文件添加到 Xcode 中的资源目录中,当我创建应用程序时,.png 文件显示在包内容内的资源中,但我无法弄清楚如何引用文件,这是我尝试过的:

[image initWithContentsOfFile:@"resources/draw-button.png"];

我认为我的包内容将是我当前的目录,所以我认为这可行,但确实如此。如何引用我的资源目录?

最佳答案

您想使用NSBundle :

NSString *path = [[NSBundle mainBundle] pathForResource:@"draw-button" ofType:@"png"];
NSImage *img = [[NSImage alloc] initWithContentsOfFile:path];

关于objective-c - 访问使用 xcode/cocoa 创建的应用程序包中的资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2562688/

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