Possible Duplicate:
What is the best way to solve an Objective-C namespace collision?
I was using 2 open source projects in an application with different use --- the issue was that both project had same class name with different implementations.
As per my understanding objective C don't have namespace option to handle scope --- as of now I am renaming the one of the class and its usage to make it work in my project.
Is there any alternative solution then renaming? I feel like objective C is missing namespace.