After building nsmutablearray should i convert it to nsarray for performance benefit?

ios, objective-c

Solution

No. The conversion itself will cost time and CPU cycles and you won't gain anything from the conversion.

Problem

Wondering, After building nsmutablearray should i convert it to nsarray for performance benefit? If i am going to keep and use that array for quite sometime.

Original source