Difference between NSArray and NSMutableArray

后端 未结 3 1349
孤街浪徒
孤街浪徒 2021-01-30 20:11

What is the difference b/w NSArray and NSMutableArray?

3条回答
  •  我在风中等你
    2021-01-30 20:26

    NSMutableArray (and all other classes with Mutable in the name) can be modified. So, if you create a plain NSArray, you cannot change its contents later (without recreating it). But if you create an NSMutableArray, you can change it — you'll notice it has methods like -addObject: and -insertObject:atIndex:.

    See the documentation for details.

提交回复
热议问题