Does NSLog affect application performance?

Hi I have a huge computation going on in my application as I have a statement NSLog

called at-lest 2000 times with a large 11MB application. I am thinking to remove this from my application to improve performance. I think that's right?

+3


source to share


1 answer


Yes, as long as the debugger is running and issuing NSLog calls, performance can be severely affected. Also, check out this question.



+4


source







All Articles