NSUserDefaults可以存储多种不同的数据类型吗?

时间:2011-08-13 01:57:26

标签: iphone ios ipad nsuserdefaults

如布尔值和整数?谢谢你的帮助!

2 个答案:

答案 0 :(得分:3)

是。 NSUserDefaults只是像NSDictionary but with a few more convenience methods一样运作。

请勿忘记在完成后同步您设置的数据。

答案 1 :(得分:1)

当然!以下是NSUserDefaults的设置函数:

– setBool:forKey:
– setFloat:forKey:
– setInteger:forKey:
– setObject:forKey:
– setDouble:forKey:
– setURL:forKey: