write dictionary to file
write dictionary to file
- Subject: write dictionary to file
- From: "Gerriet M. Denkmann" <email@hidden>
- Date: Tue, 8 Apr 2003 22:35:31 +0200
When I run this small program:
id key = [ NSNumber numberWithInt: 42 ] ;
id value = @"the meaning of life" ;
id totalKnowledge = [ NSDictionary dictionaryWithObjectsAndKeys: value,
key, nil ] ;
if ( ![ totalKnowledge writeToFile: @"/tmp/abc.plist" atomically: YES ]
)
NSLog(@"confused");
I always get "confused".
I read the docs over and over again, but do not see anything wrong.
Is this a bug, or have I missed something?
Btw: it work of course with key = @"42".
Gerriet.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.