Tagged Questions
3
votes
4answers
104 views
NSDictionary release triggers valueForKey return value release
I am currently trying to work myself into iOS development. Right now I'm having trouble understanding memory management.
This is the cause of my confusion:
NSString *path = [self.dataPath ...
0
votes
3answers
160 views
Memory management with NSMutableDictionary on iOS
I'm going to manually manage the memory of the NSMutableDictionay, without using autorelease. And every object in the mutableDictonary is a NSArray, every time I add one array in the ...
0
votes
1answer
62 views
“Release>nil>init” An acceptable way to update an NSMutableDictionary?
Is the method below an acceptable (i.e. best-practices, non-hacky) way of updating an NSMutableDictionary?
Basically I want the method to check if the dictionary has been initialized/populated yet. ...
0
votes
2answers
219 views
NSMutableDictionary memory leak
I can't find a way to get rid of a memory leak on the code below. Please help.
// Data Transfer from pList and temp & dict Creation ---------------------------------------------
...
0
votes
2answers
171 views
Memory errors when trying to create and populate a NSMutableDictionary
I am not a Cocoa developer, but I have been dabbling in it to build some plugins for PhoneGap. This particular plugin method is either 1) crashing the app without saying why or 2) complaining about ...
1
vote
4answers
480 views
Why do I get a leak when using CFPropertyListCreateDeepCopy?
I am creating a deep mutable copy of a dictionary but for some reason am getting a leak. I've tried this:
NSMutableDictionary *mutableCopy = (NSMutableDictionary ...
0
votes
1answer
177 views
NSXMLParser and memory management issues
I've been trying to implement NSXMLParser and so far I've had memory issues, performance issues or it doesn't work.
I worked originally from a example off the net and it leaked a heap of memory. I ...
1
vote
1answer
403 views
NSMutableDictionary memory / address problem, release does not work?
I am trying to create a NSMutableDictionary(dictA) with objectA. When I try to view my dictionary(NSLog), each key is pointing to the same address. I have an objectA_1 which is type objectA and used ...
1
vote
3answers
3k views
NSMutableDictionary, alloc, init and reiniting
In the following code:
//anArray is a Array of Dictionary with 5 objs.
//here we init with the first
NSMutableDictionary *anMutableDict = [[NSMutableDictionary alloc] initWithDictionary:[anArray ...
1
vote
2answers
551 views
Objective-C NSMutableDictionary Disappearing
I am having this problem with the NSMutableDictionary where the values are not coming up.
Snippets from my code look like this:
//Data into the Hash and then into an array
yellowPages = ...
1
vote
2answers
3k views
How to release an NSMutableDictionary Instance Variable properly, with nested dictionaries, in Objective-C?
I have an Objective-C class that looks something like:
@interface myClass : NSObject
{
NSMutableDictionary *aDict;
}
Its setter method looks like:
- (void) setADict: (NSMutableDictionary *) ...