I want to create an umbrella framework in iOS SDK. My requirements are:
I have a framework called "Framework A", I want to create another framework called "Framework B". I want to add "Framework A" into "Framework B" as a sub-framework and users only need to import "Framework B" in their project to use both "Framework A" and "Framework B". In other words, "Framework B" will work as a wrapper for "Framework A". I read out from Apple via following link regarding framework creations:
but it doesn't expose the way to create an umbrella framework.
Please suggest step by step method to create an umbrella framework.