Init 2d array during runtime? [closed]
So when I create a reference to an 2d array i have to specify its size? But during runtime I need to decide its size, or change its size? How do I do that?
Instead of NSArray use NSMutableArray. With that type you can change the size afterwards and add more objects later during runtime.
精彩评论