iOS Question:

Can you please explain the difference between NSArray and NSMutableArray?

iOS Interview Question
iOS Interview Question

Answer:

NSArrayʼs contents can not be modified once itʼs been created whereas a NSMutableArray can be modified as needed, i.e items can be added/removed from it.


Previous QuestionNext Question
What is struct?What is retain counts?