How to build a Framework class in Xcode?

I want to create a framework for some general aspects used in xcode, such as UIKit, Foundation, etc. Is it possible to create our own structure that could be reused later? If so, could you tell us a step-by-step procedure on how to do this?

+5
source share
2 answers

It is currently not possible to create a framework using the iPhone SDK. Closest you can combine the logic you want to add to the static library.

This is a good entry on how to do this for the iPhone SDK:

http://blog.stormyprods.com/2008/11/using-static-libraries-with-iphone-sdk.html

+5

All Articles