I am attempting to incorporate a plist into my project. I have accomplish the extraction of the data from the plist to my project. Now I want to write back the modified data. For instance, I have a textField in which the data is stored as an integer. Now I want to capture that integer data and store it in an NSMutable Dictionary *temp using:
[temp setObject:<what goes here?> forKey:@"key"];
prior to writing it all out to the plist. All I end up getting is the pointer information and not the value of the textField into the dictionary. I am using the following to examine the dictionary:
for (id key in temp) {
NSLog(@"entry %@ value %@", key, [temp valueForKey:key]);
}