首页 > 移动平台 > 详细

ios8分享没有对应APP审核失败解决方法

时间:2014-10-14 12:15:49      阅读:422      评论:0      收藏:0      [点我收藏+]

拒绝原因:

Additionally, we found that your app requires the installation of another app before it can be used, which is not in compliance with the App Store Review Guidelines. Apps should be able to run on launch, without requiring additional applications to be installed.

Specifically, we were required to install WeChat/QQ before we could use the sharing features in your app.

Please revise your app so that a user can use it upon launch. If your app requires authentication before use, please use a method that can authenticate users from within your app.

问题原因:

使用微信分享、登录必须安装微信客户端,QQ登录、QQ空间分享过程中必须安装手机QQ客户端,在未安装客户端的设备上测试会提示下载,这是不符合苹果审核规则的。这是微信及腾讯QQ互联导致的问题。

解决方案: 首先调用微信SDK或QQ互联SDK的方法检测是否安装微信/QQ客户端:

    if([QQApi isQQInstalled]){
        [share registerQQAppId:QQApiKey enableSSO:YES];
        [platforms addObject:FRONTIA_SOCIAL_SHARE_PLATFORM_QQWEIBO];//腾讯微博
        [platforms addObject:FRONTIA_SOCIAL_SHARE_PLATFORM_QQ];//qq空间
    }

//微信也一样的意思

[WXApi isWXAppInstalled]

如果未安装客户端则隐藏对应登录或分享按钮。 经过验证上述方法可以有效通过APPstore审核。

ios8分享没有对应APP审核失败解决方法

原文:http://www.cnblogs.com/liangjialun219/p/4024088.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!