About iOS IPv6 network with ionic framework
Finally, I used this plugin cordova-HTTP
the last version this used the AFNetworking v3.1.0
then, add some code to solving my networking issue
// using AFNetworking if on iOS device
if ($window.cordova && ionic.Platform.isIOS()) {
// $window.CordovaHttpPlugin.get
// $window.CordovaHttpPlugin.post
// or
// cordovaHTTP.get
// cordovaHTTP.post
} else {
// $http.get
// $http.post
}