苹果公司批准了URLWithString:@“ App-prefs:root = FACEBOOK”]的替代品;

时间:2019-03-16 23:50:01

标签: ios objective-c app-store

我的应用因以下代码(显然是私有API)而被应用商店拒绝了:

else if (intVersion>=10.0) {
     NSURL *URL = [NSURL URLWithString:@"App-prefs:root=FACEBOOK"];
     [[UIApplication sharedApplication] openURL:URL options:@{} completionHandler:nil];
    }

Apple显然认为“ App-prefs:root”是私有API,目前(2019年)最好的做法是使用户尽可能接近其他应用程序的设置?

是您能做到的最好的事情

 NSURL * URL = [NSURL URLWithString:UIApplicationOpenSettingsURLString];

这只会带您进入常规设置页面。

0 个答案:

没有答案