I have a library written in C that I would like to use in an Objective-C application, either on a Mac or on an iPhone.
Unfortunately, since this library is written by individuals in an open source space, the documentation is rather scarce and incomplete. Although I can understand how to use the material in the library, I really do not have an overview of the entire code base.
What I would like to do is wrap the library in some easily used and portable classes in Objective-C.
- Does anyone have any tips on how to approach this?
- Any tips on the best way to get the visual hierarchy of the library structure?
- How do I decide how best to structure my shell for reuse and ease of use?
Any help would be greatly appreciated, thanks!
source
share