NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *helloStr = @"hello, thisi is a NSUserDefaults demo.";
[defaults setObject:helloStr forKey:@"hello_str"];
[defaults synchronize];
NSLog("%@", [defaults objectForKey@"hello_str"]);
NSUserDefaults 初探
最新推荐文章于 2022-11-24 11:14:52 发布