I developed a Cocoa touch framework and am having problems with third party static framework classes which are embedded inside of it.
The problem is symbol collision
You can always use classes from framework like this:
import Alamofire let request = Alamofire.Request(...)
And if you have Request class in your own framework, you can use it in the same way:
Request
import YourFramework let request = YourFramework.Request(...)
There there would not be any conflicts.