AlBeebe
AlBeebe

Reputation: 8121

How do you add graphics to a dylib?

I just started learning how to write mobile substrate addons, and have successfully been able to create a dylib that hooks into a native iphone app. My question is, how do I go about adding images to my dylib file so they can be displayed in the app.

Upvotes: 0

Views: 158

Answers (1)

arclight
arclight

Reputation: 5310

You can't, use a Bundle for Images, Localization Files and XIBs

For more info in bundles check out Bundle Programming Guide by Apple.

Upvotes: 1

Related Questions