Re: Simple Save Preference Tutorial
Re: Simple Save Preference Tutorial
- Subject: Re: Simple Save Preference Tutorial
- From: John Blackburn <email@hidden>
- Date: Sat, 23 Feb 2002 16:35:33 -0800
On Saturday, February 23, 2002, at 03:58 PM, Mohammad F. Haque wrote:
Hi, I was wondering if anybody knows any tutorial that explains how to
save a preference.
Take a look at the documentation for NSUserDefaults:
-(BOOL)honk
{
[[NSUserDefaults standardUserDefaults] boolForKey:@"Honk"]
}
-(void)setHonk:(BOOL)honk
{
[[NSUserDefaults standardUserDefaults] setBool:honk forKey:@"Honk"];
}
John Blackburn
_______________________________________________
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.