Explain NSMutableArray. Could you r开发者_运维百科eset it after all the deletions to put it back to its original state with all the initial variables?Please refer this
I have two arrays, A and B. How can I remove elements from A, if those elements exist in B? e.g. Array A:{1,2,3,4,5}, array B:{1,3}
I am now using this code: - (void)loadLauncher:(NSMutableArray *)categoriesArray { _launcherView = [[TTLauncherView alloc] initWithFrame:self.view.bounds];
My eyes hurt from hours of trying to figure this one - and i have looked for an answer for quite a while on-line (it will be embarrassing to tell how much...).
I have an NSMutableArray i am trying to convert into a string. Declaring my NSMutableArray... NSMutableArray *listData;
I am testing NSMutableArray and do not understand what i am doing wrong. When i define \"myArray\" locally the [myArray addObject:@\"First line\"]; works but if i define it in the .h file it ends up
I\'m having problems with the implementation of the memory management of objective c. I\'ve reed several manuals, but i think that I\'m loosing something.
Instruments point to this line saying there is a leak here - (void) loadFavoriteData { TradePortMobileAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
i used following method to rmove all objects from an NSMutableArray [myData removeAllObjects]; but it gives an runtime error
OK, this is my problem: I have a NSMutableArray (hsdbarray) with objects (highscoresdbObj) in it. I want to sort the objects in the array by 开发者_运维问答OBJECT.NSNumber (highscoresdbObj.hsdbname) d