如何与Settings.bundle中的NSUserDefaults同步?

发布于 2024-12-01 00:43:49 字数 540 浏览 0 评论 0原文

我在 Settings.bundle 中创建了我的应用程序设置。我进入设置应用并更新一个值。当我重新启动我的应用(在后台)时,如何检查设置应用中的更新设置。

我尝试了以下操作,但仍然得到旧值。有什么建议吗?

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkAutoUpdateSettingsForNotificaiton:) name:UIApplicationDidBecomeActiveNotification object:nil];

- (void)checkAutoUpdateSettingsForNotificaiton:(NSNotification *)aNotification
{
    NSNumber *period = [[[NSUserDefaults standardUserDefaults] objectForKey:@"periodID"] retain];

}

I created my application settings in Settings.bundle. I go into the Settings App and update a value. When I relaunch my app (which was in the background), how do I check for the updated settings in the Settings App.

I tried the following but I still get the old value. Any suggestions?

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkAutoUpdateSettingsForNotificaiton:) name:UIApplicationDidBecomeActiveNotification object:nil];

- (void)checkAutoUpdateSettingsForNotificaiton:(NSNotification *)aNotification
{
    NSNumber *period = [[[NSUserDefaults standardUserDefaults] objectForKey:@"periodID"] retain];

}

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

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

发布评论

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

评论(1

2024-12-08 00:43:49

我必须添加 [[NSUserDefaults standardUserDefaults] Synchronize]; 来进行同步。

I had to add [[NSUserDefaults standardUserDefaults] synchronize]; to do the synchronization.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文