How can I create objective-C Framework for iOS Application

后端 未结 6 788
星月不相逢
星月不相逢 2020-12-15 01:13

I am in the middle of creating some generic classes that can be reusable for lot of application.

For Eg: Share Functions - if we need this functionality in a projec

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-15 01:53

    I'm guessing that what you are asking for is how to create a shared dynamic library for iOS; and the long and short of it is: You can't.

    The only kind of library supported is the static library; so whenever you make changes to your library; every application that uses it needs to be recompiled.

提交回复
热议问题