Maurice Raguse
Maurice Raguse

Reputation: 4567

Build a framework which can use only in one iOS app?

Is it possible to create a framework which only works on a specified app bundle identifier?

I want to prevent to reuse ur framework by shipping out my app source code / project which is using a selfmade framework

Upvotes: 2

Views: 59

Answers (1)

sundance
sundance

Reputation: 3020

If you ship source code, you cannot prevent the code from being reused. If you want to ship the compiled framework, you can use the approach described in the answer of Reinier Melian.

You could also consider creating a pure library instead of a framework. See here and here for the differences.

Upvotes: 1

Related Questions