I am getting memory leak in NSMutableArray allocation.. in NSMutableArray *contactsArray =[[NSMutableArray alloc] init];
I am creating a kinda gallery and for each gallery I created a view controller whose view is added to a scrollview (see code below) :
NSMutableArray *insideArray = [[NSMutableArray alloc] init]; NSMutableArray *outsideArray = [[NSMutableArray alloc] init];
I need help with deallocation of my NSMutableArray of custom objects. I need to retain the array and so I have added a property in .h and I release it in dealloc in .m file开发者_如何学Python. When I
How do I get the contents of the documents directory as a NSMutableA开发者_开发技巧rray? I can get it as a normal NSArray, but as soon as I try to do anything with that array, my app crashes.
NSMutableArray count is returning zero after adding objects to it, its been an hour of hacking away trying to figure out why, and I\'m still stuck, so that brings me here.
I am having this problem with the NSMutableDictionary where the values are not coming up. Snippets from my code look like this:
In my program I have two classes: Collector and Entity. Collector stores Entities in NSMutableArray. @interface Entity : NSObject {
I have a data set that is around 700 rows with eight columns of string data. Is it wo开发者_StackOverflowrth setting up core data? Will I see a huge performance difference if between Core Data and an
i have a problem with a exc bad access. I already turned in NSZombieEnabled, but cannot figure out why this problem will be caused.