Martin
Martin

Reputation: 145

Compile one Objective C iOS class before share code with others

I have to share my source code with someone else but I don't want them to look in certain classes (or categories). Can I compile them into binary file with h file outside? Something like iOS framework that displays only header files.

Upvotes: 2

Views: 89

Answers (1)

Vignesh
Vignesh

Reputation: 10251

You can put them in a custom framework and link to your project. Look here.

Upvotes: 2

Related Questions