App store拒绝应用程序在iOs 10上支持IPV6网络

我收到苹果公司的app拒绝邮件,下面是

我们在连接到IPv6网络的Wi-Fi上运行iOS 10.0.2的iPad和iPhone上查看了应用中的一个或多个错误.
具体来说,应用程序在启动时仍保留在启动屏

根据他们的要求,我已经在我的Mac上创建了NAT64网络,并为iPhone 5S设备10.0.2 os版本共享了互联网,App工作正常,

但苹果称其不与IPv6合作
任何人都可以确认我需要检查其他什么吗?

Related question

环境:
Appcelerator Studio Ti SDK 5.1.0 GA
XCode版本6.3

提前致谢

解决方法

只需阅读你从苹果人那里得到的邮件.答案只会在那里.
使用wireshark来了解您的网络究竟在做什么.

另外要理解这个问题更好地使用wireshark来分析正在发生的事情 – 按照该会话中的概述创建一个网络,看看在wifi端口上发生了什么

https://developer.apple.com/videos/play/wwdc2015/719/

更多信息请查看@ Sean答案

After quite a bit of stress,I can confirm that the issue was a problem with our backend not being correctly configured for IPv6. Apparently,AWS doesn’t support IPv6,nor IPv6-only DNS through Route53. I ended up moving all the internet facing bits of the backend away from AWS for the time being. I wanted to leave this up because I think there are probably going to be others who find themselves with similar problems as people start submitting updates past the IPv6-only restriction. The best tool I found for testing server/dns readiness has been: 07002

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...