iOS 被拒解析

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/walkerwqp/article/details/80497530

原因:

Your app uses the "prefs:root=" non-public URL scheme, which is a private entity. The use of non-public APIs is not permitted on the App Store because it can lead to a poor user experience should these APIs change.



Continuing to use or conceal non-public APIs in future submissions of this app may result in the termination of your Apple Developer account, as well as removal of all associated apps from the App Store.

解决办法:

// NSURL*url=[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"];

//            [[UIApplication sharedApplication] openURL:url];


删除此方法就行  

或者在程序中搜索   prefs:root=   把所有包含这些的代码注释掉

猜你喜欢

转载自blog.csdn.net/walkerwqp/article/details/80497530