Is there a way to make an executable from an Xcode project?
I feel it's quite a naive question I'm going to ask. Excuse me if it's foolish.
I have made an iPhone game using Cocos2d, Box2d and OpenGL. I want to show the game to a potential employer for demonstration purposes开发者_高级运维, without giving him the source code.
How can I make a .exe or .app file from the Xcode project?
I've searched online a lot but couldn't find the relevant answer.
Thank you very much in advance.
If you just want to give him something to run in the iPhone Simulator, then build the project in Debug mode, look inside the build/Debug-iphonesimulator/
folder created by the build process and give him that app. If you want him to run the app on his phone/iPod/iPad, then you need to join the iPhone developer profile and follow the provisioning portal instructions.
精彩评论