vote up 0 vote down star
2

in my iphone app, I am linking with a static library containing objective c files and images. Is it possible to load an image from a static library? I have tried

[UIImage imageNamed:[[NSBundle mainBundle] pathForResource:@"imageName" ofType:@"png"]];

but obviously the image is not in the main bundle, it's in the static library and the NSBundle class seems only to offer access to the main bundle and to bundles with known paths. Is there a way to load an image from a static library on the iPhone?

flag
What? How does a static library contain images? That doesn't make sense to me. A static library should just be code that the linker will include in your executable. – Chuck Sep 9 at 21:03

2 Answers

vote up 1 vote down check

It's not clear what you mean by "the image is [...] in the static library". Static libraries are plain files (with the .a extension) and contain archived object files. Bundles on the other hand are directory hierarchies (containing executables and other resources).

If you link a static library, the code from the library is included directly into your executable. No files are copied to the application bundle, so there's no way to copy the image.

If you have the image file with your static library, you can simply copy it to your application bundle by adding a copy files build phase to your target in Xcode.

link|flag
Thanks! I'm new to xcode and I needed a copy files build phase. That fixes it. – zaccox Sep 10 at 13:47
vote up 2 vote down

The simplest way is to store the image in an inline character array:

const char imageData[] = { 0x00, 0x01, 0xFF, ... };

And later when you need it:

UIImage *image = [UIImage imageWithData:[NSData dataWithBytesNoCopy:imageData length:sizeof(imageData) freeWhenDone:NO]];

You will have to convert your image's binary data (after saved as either PNG or JPEG) to the character array manually (or write a script to do so)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.