Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 ifunbox 找到我的这条路径,但它不是我认为的那样。/var/mobile/Applications/XXX/../../Library/Caches/com.apple.mobile.installation.plist。
您应该使用以下代码获取此文件
NSString *directory = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject]; NSString *yourFile = [directory stringByAppendingPathComponent:@"com.apple.mobile.installation.plist"];
但我不确定你是否做对了。