Reputation: 1196
I have six static libraries as archives [.a], I want to create a Framework or another archive in iOS, in which I handle them adding more functionalities, making it easy to use in the future. Is this possible?
Upvotes: 0
Views: 168
Reputation: 17722
Yes, it is. You should do the following steps:
ar
and after that create a new single lib with ar
from these extracted files.Upvotes: 1