InterviewSolution
Saved Bookmarks
| 1. |
When will you use NSArray and NSMutableArray? Which one is faster? |
|
Answer» NSMUTABLEARRAY is the subclass of NSArray and they both manage COLLECTIONS of OBJECTS known as arrays. NSArray is RESPONSIBLE for creating static arrays, whereas NSMutableArray is responsible for creating DYNAMIC arrays. |
|