Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following requirement.

I need to implement dll kind of thing on mac.I need to create a backend library which can be loaded dynamically.This backend library will contain the cocoa classes and c++ classes.

What is advantage/disadvantage of cocoa framework,I was googling so far,I was not able to figure out the best one.Please give me some suggestion.Is cocoa framework also loaded dynamically?

share|improve this question
Define "better". – user1203803 Apr 20 '12 at 6:51
What is advantage/disadvantage of cocoa framework comparing with library/bundle? – Akbar Apr 20 '12 at 6:53

2 Answers

up vote 6 down vote accepted

The main difference between a dynamic library and a framework is that a framework can contain resources (images, sound files, nibs, etcetera) and header files. When you use a dynamic library, these are separate.

Both a framework and a dynamic library are loaded at runtime. If your library will only be used on Mac OS X, I recommend creating a framework because it is easier to manage since everything is in one folder.

Bundles (the white LEGO bricks) are almost exclusively used as plug-ins. If you want to create a plug-in interface you should accept bundles and you should provide a framework the bundles can link against. Bundles are also loaded at runtime.

share|improve this answer
Thanks for your answer,again got confused,how plugin differentiate from library. – Akbar Apr 20 '12 at 7:03
An application may depend on dynamic libraries and frameworks, while plug-ins are optional. Plug-ins can be created by third parties to add extra functionality to your application. Of course it's not a requirement to provide a plug-in interface. – user1203803 Apr 20 '12 at 7:06
Yeh got it,Thanks again.As you said frameworks are also loaded dynamically.While creation cocoa frameworks,We will build the framework project and copy to /Library/Framework.While using this in our application ,we need to add the framework to our project that means we are statically linking the framework at compile time.How it can be said loading runtime.please clease this. – Akbar Apr 20 '12 at 7:18
Frameworks are always linked dynamically. They are loaded just before the program runs. – user1203803 Apr 20 '12 at 7:19

Here's a decent tutorial (PDF form) that goes a little more in depth explaining the differences between ordinary libraries and frameworks.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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