1

I need to design a simple plugin system in Objective C. I would like some advice about how to go about this. Thanks!

Abizern
  • 138,728
  • 38
  • 201
  • 254
binaryguy
  • 11
  • 2

3 Answers3

2

Cocoa is your girlfriend: http://www.cimgf.com/2008/09/17/cocoa-tutorial-adding-plugins-to-a-cocoa-application/

Awesome tutorial.

1

There is always going to the Source. Here is the ADC reference to Plug-ins

Abizern
  • 138,728
  • 38
  • 201
  • 254
0

There are dozens of ways you could do this, so you might need to elaborate a little on what exactly you're trying to achieve. As a starting point, I'd recommend you look into Cocoa delegates which are usually a great way to integrate new code into an existing framework.

conmulligan
  • 6,945
  • 6
  • 29
  • 44