Possible Duplicate:
iOS apps sharing assets
I am trying to create a unique "About me" section for my iOS apps that I can reuse later in my other apps.
In order to minimize the amount of maintenance work needed to maintain the "About" section of my apps I'm trying to find the best way to create a "library" that would contain the code as well as the xibs/images/sounds for this section that I can simply "drag and drop" in all my apps.
Now I thought about using static libraries, but they do not allow for the use of xib/resource files - so it doesn't seem to be an option. I could add the resources manually from the library using "Copy Bundles Resources", but I will have quite a few sound effects, images and xib in this section so it doesn't seem to be very practical.
Can someone please tell me what is the preferred way of doing this?
ANSWER
As Vladimir suggested below, this tutorial works in this case: galloway.me.uk/tutorials/ios-library-with-resources
UPDATE: Using bundles like that, I was unable to "Archive" an app for submission to the appstore. Something to consider before using bundles... But there have been examples of people using them successfully.