static Nsstring * const kAppStoreGiftURL = @"itms-appss://buy.itunes.apple.com/" "WebObjects/MZFinance.woa/wa/giftSongsWizard" "?gift=1&salableAdamID=%u&productType=C&pricingParameter=STDQ&mt=8&ign-mscache=1"; Nsstring *url = [Nsstring stringWithFormat:kAppStoreGiftURL,kAppID]; NSLog(@"opening store with URL: %@",url); [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
然而,现在看来,在openURL之后会产生以下错误消息:
通过商店直接赠送应用程序仍然可用.
苹果是否完全禁用此功能,还是有一个可以减轻此问题的新网址?
解决方法 旧的礼物网址没有文件,苹果现在已经停止支持.我注意到,在2013年12月的某个时候,它停止了工作.据我所知,如果再次可能,苹果公司没有发表任何公开评论.我已经诉诸使用警报视图来指示用户如何赠送礼物.除非苹果带回这个功能,否则还没有太多的其他功能.
// Gift appUIAlertVIEw *giftAlertVIEw = [[UIAlertVIEw alloc] initWithTitle:@"Gift this App" message:@"Give a copy of this app as a gift?\n\nTap Share > Gift\non the App Store page" delegate:self cancelbuttonTitle:@"I'll think about it" otherbuttonTitles:@"OK",nil];[giftAlertVIEw show];总结
以上是内存溢出为你收集整理的ios – 发送用户从应用程序内赠送应用程序不再工作了吗?全部内容,希望文章能够帮你解决ios – 发送用户从应用程序内赠送应用程序不再工作了吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)