Re: write dictionary to file
Re: write dictionary to file
- Subject: Re: write dictionary to file
- From: publiclook <email@hidden>
- Date: Tue, 8 Apr 2003 19:29:02 -0400
I believe that the documentation clearly states that dictionaries in
plists MUST use string keys. I am not sure where it is stated in
Apple's documentation, but I remember it. I have also seen it in
"Cocoa Programming".
On Tuesday, April 8, 2003, at 04:35 PM, Gerriet M. Denkmann wrote:
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.
_______________________________________________
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.