1.IDFA
之前因为要获取一下设备ID 所有随手打印了一下, 结果上架的时候没有选择IDFA.
NSString *adId = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
从2014年2月初开始,Apple开始拒绝采集IDFA(identifier for advertising)而未集成任何广告服务的应用进入AppStore。
上传的时候有一个选项是问是否有广告 我们选择了否 但是代码里却有这个类 和打印 ,所以还没提交 苹果就直接给拒绝了.所以以后上架APP建议最好是先自我检查一下.
2.是否包含付费内容和服务
拒绝原因:
应用必须使用邀请码才能注册使用
苹果要求应用不能限制只有部分用户可以使用。
因为产品的注册需要一个邀请码,通过这个邀请码加入不同的公司(组织).并不需要付费.但是之前并没有说明,导致苹果认为我们是收费的服务.苹果发给我们被拒原因,我们一一回复,等消息中...
- Does your app access any paid content or services?
- What are the paid content or services, and what are the costs?
- Who pays for the content or services?
- Where do they pay, and what’s the payment method?
- If users create an account to use your app, are there fees involved?
推荐一位大神16年3月份写的一些被拒原因
http://www.cnblogs.com/sugeladi/p/5229970.html
网友评论