vote up -1 vote down star

Hi, Can I know how to create a package in Xcode ( Objective-C ) like the Java packages. I do not find any direct way of creating a package. Is there any method to create a package in Xcode????Please help me........

flag

25% accept rate

2 Answers

vote up 1 vote down check

What are you trying to do? The three main packaging mechanisms for Mac OS X code are Application Bundles, Frameworks, and Plug-Ins. Application bundles are for end-users, Plug-Ins extend functionality, and Frameworks are for delivering to other developers to build on. Pick the packaging scheme that's appropriate for your job, and then use the provided Xcode project template to build it.

link|flag
Thanks for the answer. I wanted to create a Application Bundle amoung the three options that u have specified.Can u tell me what is the procedure to create a Application Bundle??? – Cathy Nov 5 at 8:06
Pls do help me cdespinosa..... – Cathy Nov 5 at 10:49
You choose File > New Project and choose an Application from the set of available templates. You build it, and you have an Application Bundle in your Products folder. – cdespinosa Nov 5 at 22:29
vote up 2 vote down

Objective-C does not have the concept of packages. There is only a single namespace. The common solution to avoid namespace collisions is to prefix the name of your classes with a set of initials.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.