I am quite new to application development on iPhone, so please forgive me if the question seems to tedious.
I have been asked to create an app with a module that uses “Library Mode”, and that somehow by doing so, the module will not need to be signed. I have done a lot of searching on the Internet and asking my fellow developers. No one has a clue what it actually means.
So my questions are simply:
- What does it mean to create an app in “Library Mode”?
- If I create the app in “Library Mode”, is it true that I will not have to sign it?
It sounds like you are being asked to create a static library, not the end application.
So your code will be signed by the party that uses your library in their app. And therefore you don’t have to sign it yourself.
Make sense?
By the way, I found a blog post that looks useful as you head down this path.