Pooja Bansiya
Pooja Bansiya

Reputation: 83

iOS Are custom frameworks statically linked?

I have created a custom iOS Cocoa Touch framework and added it as part of "Link binary with Libraries" in another project. Is this custom framework statically or dynamically linked?

Upvotes: 0

Views: 83

Answers (1)

rob mayoff
rob mayoff

Reputation: 385600

Your custom framework is dynamically linked if you didn't take steps to make it static. The framework bundle (including the dynamic library) is copied into your app's bundle.

Upvotes: 1

Related Questions