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........
|
|
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. |
||||||
|
|
|
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. |
||
|
|
