In my iPhone app, I had initially divided the app into modules.
Each module was prepared as an individual Xcode project.
Now I have integrated all modules by referencing and copying necessary files.
I want to submit it to the app store.
Will Apple accept this project which is comprised of different individual modules being referenced into one?
Is this is the right way of doing it?
Is there any better way?
Should I consider recreating the whole project into one?
Would different App delegates not be an issue if we do so?
-
Are you referring to Xcode's ability to make cross-project references? Turning it into a single project sounds like a world of pain, and I don't see why having cross-project references should be an issue.d11wtq– d11wtq2010年11月16日 12:48:38 +00:00Commented Nov 16, 2010 at 12:48
1 Answer 1
When you submit it to the app store you submit a single .app binary and not an xcode project. Apple won't even know you're referencing other projects. It will just build all the files you need and compile it into the single binary.
Comments
Explore related questions
See similar questions with these tags.