What is __NSArrayI and __NSArrayM? How to convert to NSArray?

__NSArrayI is a code-word for an immutable array – that is, a “regular” NSArray which you cannot change.

__NSArrayM is a code-word for a mutable array – that is, NSMutableArray. In NSMutableArray, you can add and remove items.

Leave a Comment