Hello,
I have been trying to figure out if it is possible to programmatically resize an NSArray
, by code similar to this:
NSArray *resize = [NSArray arrayResized:oldarray size:10];
Which would a new NSArray
(Not a NSMutableArray
if it is possible) that has the elments after the end of oldarray
padded with [NSNull null]
.