pabloruiz55
pabloruiz55

Reputation: 1306

Iphone static libraries problem

Hello i am making an static library for distribution. I am distributing the .h files and the .a file. The problem is that if there is a runtime error, the debugger is able to see the content of the .m files. How can i avoid that?

Upvotes: 1

Views: 119

Answers (1)

kennytm
kennytm

Reputation: 523684

Compile it as release mode and strip all the debug symbols.

Upvotes: 3

Related Questions