0

I am currently making an app that allows third-party developers to create widgets for it using the API. Right now, I ship a library with the application containing a class that developers must create a subclass of. They must package their program in an NSBundle for my app to load.

Have you guys ever created an Objective-c APIs? If so, do you have tips to tell me?

Thanks

David Murray
  • 541
  • 5
  • 19

1 Answers1

1

If your goal is to provide documentation for your API I would suggest you to use doxygen. Here you'll find an interesting tutorial on how to document with doxygen.

I would also recommend you reading API Design by Matt Gemmell. It's a good reference on what a developer could expect from a well designed API.

albert
  • 8,285
  • 3
  • 19
  • 32
atxe
  • 5,029
  • 2
  • 36
  • 50