views:

79

answers:

1

I have classes we wrote for one our customers, to be used in their own iPhone code.

We would like to make the classes sealed for observing and prevent the code from being copied like we would do in windows by a closed dll or compiled swf on flash.

Any help will be appreciated.

David.

+3  A: 

Yes, you can compile your code to a library file, such as a .a, and then require them to link in your compiled library.

See a related helpful Q&A: http://stackoverflow.com/questions/681485/a-guide-for-creating-your-own-library-for-cocoatouch-development

Kekoa