ios被拒 2. 5 Performance: Software

2018-10-15  本文已影响23人  Zszen

解决方法
To resolve this issue, please revise your app to provide the associated functionality using public APIs or remove the functionality using the "prefs:root" or "App-Prefs:root" URL scheme.

个人程序不允许再支持直接访问设备设置对应设置项。

image.png

ios9以下这个功能被砍掉

ios10以上使用此功能:

NSString *version = [UIDevice currentDevice].systemVersion;
if (version.doubleValue >= 10.0) {
    [[UIApplication sharedApplication]openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString] options:@{} completionHandler:nil];
}
上一篇 下一篇

猜你喜欢

热点阅读