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 stringByAppendingPathComponent:@"dummy.plist"];
NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
NSString *dummyKeyValue = [dict valueForKey:@"dummyKey"];
// NSLog(@"%@",[NSString stringWithString:dummyKeyValue]);
[dict release];
NSString *anotherString = [dummyKeyValue lowercaseString];
This piece of code triggers an EXC_BAD_ACCESS error on the last line. Seemingly because NSDictionary releases its key values. What I don't understand is why the dummyKeyValue definition is not being taken into account, because obviously dummyKeyValue is still pointing to the value of "dummyKey".
Now the next problem and even funnier phenomenon occurs when you comment out the NSLog line. Using dummyKeyValue in one way or another seems to prevent the release of the memory it points to. WHY?
Help is appreciated!