tags:

views:

31

answers:

1

I finished one project. But others want me give them the non-Compiled code.what's that?

My project folder include:

Classes:of course, the source code. build: I don't understand clearly. imagesrc: I added, include the images of my project. The others are the nib file. Give me the explanation in detail,thank you so much.

+2  A: 

You'll want to give them everything but a folder called ".build"

  • The "Classes" contains your source files
  • The "Nibs" are the gui layout you created
  • The ".xcodeproj" is the file XCode uses to know what to build
  • The ".strings" give you the a list of text written. (Often used for supporting multiple languages)
  • The "info.plist" is a set of standard settings for your app
  • The "main.m" file contains information needed for your program to run

Dan
Thank you, so ** questions. :)