I'm making a static library for distribution for other developers. In other words, a kind of API.
And I have to use bunch of open-source libraries like SBJSON
, ASIHTTPRequest
. I think it'll make an name conflict problem if I embed these classes into my library at source level. As I know, Objective-C runtime doesn't support private classes.
So it there a way to include those classes into my library without name conflict?