BarryK88
BarryK88

Reputation: 1806

Sharing my XCode projects without letting others see it's pseudo code

A client of mine would like to have a part of the functionality I wrote for a camera-application. However I don't want to let the client see any of the source code I made.

He mentioned a .dll file in windows which enables the application to be encrypted. Is there any support for Xcode for these kind of functions?

Upvotes: 2

Views: 209

Answers (1)

Michael Dautermann
Michael Dautermann

Reputation: 89509

It sounds like you need to create a Static Library, into which you can drop all the functionality that you want to provide to your client ... without revealing the actual code you did.

Here's a tutorial you can refer to.

Upvotes: 2

Related Questions