1.Your app enables the display of user-generated content but does not have the proper precautions in place.
APP没有监督功能,为了预防不良内容,不良评论等等等等,所以需要在某些页面添加举报之类的功能。
2.We were required to install the WeChat app before we could log in via WeChat. Users should be able to log in with WeChat and access their accounts without having to install any additional apps.
APP包含过第三方登录或者分享,但是如果你的手机上没有安装这样的第三方,是不能显示出来的,更不能在点击第三方的时候提示此第三方未安装,请安装之类的。判断手机是否安装某类第三方代码,以检查是否安装微信为例。不同的第三方URL是不一样的。
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"weixin://"]]) {
}
else
{
}
3.We noticed that your app’s in-app purchase products are mislabeled as Apple Pay, which could confuse and mislead users.
你的APP被错误的标识为apple内购,意思是如果你的APP有内购功能,就必须在点击购买后直接执行内购功能,不能弹出一个确认页面并且写上支付类别为:苹果支付。比如你在点击购买后会弹出一个确认购买页面上面会写上支付金额,获取虚拟产品的数量,支付方式等等,不能在支付方式上写苹果支付。
网友评论