gpt4 book ai didi

ios - 在 iOS 8 模拟器上操作应用程序权限

转载 作者:行者123 更新时间:2023-11-29 02:03:07 26 4
gpt4 key购买 nike

this one 相同的问题,但适用于 iOS 8。

在运行 xctests 时,如何确保以编程方式授予/拒绝权限?

是否使用相同的TCC.db?如果是这样,因为没有 $HOME/Library/Application Support/iPhone Simulator/8.x 目录,它移到了哪里?

最佳答案

感谢username tbd ,TCC.db 仍在使用中,但现在位于

$HOME/Library/Developer/CoreSimulator/Devices/$DEVICEID/data/Library/TCC/

“访问”表的架构相同。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *dbPath = [paths firstObject];

for (int ii = 0; ii < 5; ii++) {
dbPath = [dbPath stringByDeletingLastPathComponent];
}

dbPath = [[[dbPath stringByAppendingPathComponent:@"Library"]
stringByAppendingPathComponent:@"TCC"]
stringByAppendingPathComponent:@"TCC.db"];

请注意,TCC 仅适用于帐户访问(联系人、邮件等),并非所有权限。

关于ios - 在 iOS 8 模拟器上操作应用程序权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30106320/

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