objective c - Creating bundles in Cocoa -


What is the best way to create empty bundles in cocoa? The bundle in OS X is actually nothing but a folder, the only difference is that you have to click on the right content to "Show the contents of the package", right?

Well, I need a bundle in that sense. After that I will put some files of my choice in it, such as a group of plast files. The reason for this is that my file structure (in this, the App Support folder) looks good at the root level.

Related questions: How do I tell OS X that a folder is ending should be treated as a bundle with ".myappFoo"?

The first place for information is Apple Developer Doctor

In the following Whenever any state is correct, the Finder accepts one package:

The directory has a known file name extension: .app, .bundle. Frame, .plugin, .kxt, and so on.

The directory contains an extension that shows some other application claim package type; See the document package.

The directory has its package bit sets.

MyAppfoo is showing as a bundle

Comments

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -