I\'ve got an NSMutableArray
that holds a bunch of objects, what I\'m trying to figure out is how much memory is the array
using. After looking at a cou
To get the number of objects in the array, use
[temp count]
If you want the total memory usage of the array, you'll have to loop through and add up how much memory each object uses, but I don't think that a generic object will give you its size. In general, you shouldn't really have to worry about memory usage, though.