macos – 在OS X应用程序中以编程方式清除用户默认值

macos – 在OS X应用程序中以编程方式清除用户默认值,第1张

概述我正在使用我的应用程序的beta版本,我需要确保在最初发布的最终版本用户已经是beta测试人员将使用完全清晰的用户默认设置启动应用程序…(我不能更改Bundle ID). 1)有没有办法以编程方式清除用户默认值? 2)为App Store提交沙盒这个应用程序会对我有帮助吗? 您可以像这样删除它: NSString *appDomain = [[NSBundle mainBundle] bundle 我正在使用我的应用程序的beta版本,我需要确保在最初发布的最终版本用户已经是beta测试人员将使用完全清晰的用户默认设置启动应用程序…(我不能更改Bundle ID).

1)有没有办法以编程方式清除用户默认值?

2)为App Store提交沙盒这个应用程序会对我有帮助吗?

解决方法 您可以像这样删除它:

Nsstring *appDomain = [[NSBundle mainBundle] bundleIDentifIEr];[[NSUserDefaults standardUserDefaults] removePersistentDomainForname:appDomain];

要在第一次启动时运行它,我只需设置一个BOol标志.一种方法如下:

- (voID)applicationDIDFihishLaunching{    NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];    if ([[prefs objectForKey:@"secondOrMoreTimeLoading"]boolValue]==0) //so if there is nothing there...    {        NSLog(@"This is the first time the user has loaded the application. Welcome!");        //run the code above here,then change our flag to 1 so that it never runs this again (unless the prefs are reset elsewhere)        [prefs setobject:[NSNumber numberWithBool:1] forKey:@"secondOrMoreTimeLoading"];    }    else{NSLog(@"Welcome back,user.");}     }
总结

以上是内存溢出为你收集整理的macos – 在OS X应用程序中以编程方式清除用户默认值全部内容,希望文章能够帮你解决macos – 在OS X应用程序中以编程方式清除用户默认值所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1003652.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存