I'd like to include files, data and images in a static library API so the users won't need to include them manually in their project. I see that there isn't obvious way to do it but is there some hack or workaround to achieve this goal ? Thanks

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You can try to use xxd with the -i command line parameter and use a wrapper function/method that feeds the data into a NSData

- (UIImage*)getMyImage
{
    return [UIImage imageWithData:[NSData dataWithBytes:file_ext 
                                                 length:file_ext_len]];
}
link|improve this answer
Nice trick! thank you – CodeFlakes Nov 28 '09 at 10:34
feedback

So after referencing the frameworks programming guide, @codeflakes pointed out that dynamic frameworks aren't possible on iPhone OS. I found this link which looks like it has a static lib that includes a few resources. I downloaded the PlausibleDatabase lib referenced there and did see a couple items in a Resources directory. I think the static lib has to build it's own pseudo-bundle structure to get at those things.

link|improve this answer
But I though you could not write your own Framework on the iPhone ? – CodeFlakes Nov 27 '09 at 16:42
Thanks for the link – CodeFlakes Nov 27 '09 at 19:06
feedback

Your Answer

 
or
required, but never shown

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