gpt4 book ai didi

ios - 从 Xcode 重置 iPad 应用程序内容和设置

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:00:51 27 4
gpt4 key购买 nike

从 Xcode 测试我的应用程序时,在 iOS 模拟器中我可以选择“重置内容和设置”,这样应用程序就可以从头开始。我最感兴趣的是清除存储的核心数据。

当我从 Xcode(通过 USB)在实际 iPad 上运行应用程序时,如何实现相同的目的?我不想为此更改实际的应用程序以编程方式执行此操作,因为我不打算在应用程序中发布重置选项。

提前致谢。

最佳答案

如果您从 iPad 上删除该应用程序就足够了。您的应用程序创建的所有内容也将被删除。

但如果您改变主意并计划以编程方式进行,这可能对您有所帮助:

NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier];
[[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain];


NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];

NSArray *contents = [fileManager contentsOfDirectoryAtPath:documentsDirectory error:NULL];
NSEnumerator *e = [contents objectEnumerator];
NSString *filename;
while ((filename = [e nextObject])) {
[fileManager removeItemAtPath:[documentsDirectory stringByAppendingPathComponent:filename] error:NULL];
}

关于ios - 从 Xcode 重置 iPad 应用程序内容和设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23577653/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com