I'm using [NSDictionary writeToFile:...] to save a fairly large dictionary as a text plist file. I found a quick and dirty hack to convert it into a binary formatted file:

    strcpy(command, "/usr/bin/plutil -convert binary1 ");
    strcat(command, fileName);
    ret = system(command);

Yeah, I know - a real groaner - but I was in a hurry.

Am I missing something obvious? Is there code out there that can take a dictionary and save it as a binary plist?

Thanks,

David


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to