如何从iPad上卸载我的应用程序? 我正在使用此代码删除Documents目录:
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES); NSString * documentsDirectoryPath = [路径 objectAtIndex:0]; NSFileManager * fileManager = [NSFileManager defaultManager];
[fileManager removeItemAtPath:documentsDirectoryPath error:NULL];
答案 0 :(得分:1)
您无法删除Documents目录,也没有API以编程方式从iOS设备卸载应用程序。
用户是控制是否从他们的设备中删除应用程序的用户,当他们选择这样做时,将从设备中删除Documents,Library和Temp文件夹中的所有文件。
存储在应用程序用户默认值数据库中的任何内容也将被删除。存储在钥匙串中的任何东西都将保留在设备上。