字典中的整数值存储在 plist 中

发布于 2024-11-23 19:23:17 字数 138 浏览 0 评论 0原文

将一堆整数值存储到 NSDictionary 中(然后可以保存为 plist)涉及哪些过程?

那么如何将该 plist 读回到 NSDictionary 中,然后获取它们的值呢?

我想存储一堆值,然后在应用程序重新启动时读回它们。

What processes are involved in storing a bunch of integer values into an NSDictionary that can then be saved as a plist?

Then how would one read that plist back into an NSDictionary and then get the values of of them?

I want to store a bunch of values and then read them back in on app relaunch.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅唱ヾ落雨殇 2024-11-30 19:23:17

用于在字典中存储整数值 ---

// saves integer as NSString.
NSString *str = [NSString stringwithformat:@"%d", 234 (integer value)];

现在将上面的整数值 str 保存到字典中作为 --

// saves your integer value into dictionary..
NSDictionary *dict = [[NSDictionary alloc] setObject:str forkey:@"intervalue"];

从 NSDictionay 检索整数值 -----

//got the value in string format
NSString *str = [dict objectforkey:@"integervalue"];

// from this we got the original integer value from the string...
NSInteger integerValue = [str intValue];

for storing integer values in dictionary ---

// saves integer as NSString.
NSString *str = [NSString stringwithformat:@"%d", 234 (integer value)];

now save above integer value str into dictionary as--

// saves your integer value into dictionary..
NSDictionary *dict = [[NSDictionary alloc] setObject:str forkey:@"intervalue"];

retrieving integer value from NSDictionay -----

//got the value in string format
NSString *str = [dict objectforkey:@"integervalue"];

// from this we got the original integer value from the string...
NSInteger integerValue = [str intValue];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文