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应用程序中以编程方式清除用户默认值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)