#すみません、間違って途中で【書き込む】を押してしまいました。
以下のように、HttpRequest を使って、サーバにアクセスしています。
Win/Android では正常に動作するのですが、iOS では response->getResponseCode() が -1 を返します。
どこか間違いがあるのでしょうか?それとも何かiOSでの設定が必要なのでしょうか?

cocos2d::network::HttpRequest* request = new cocos2d::network::HttpRequest();
string str = "http://google.com/";;
request->setUrl(str.c_str());
request->setRequestType(cocos2d::network::HttpRequest::Type::GET);
request->setResponseCallback( [this](network::HttpClient* sender, network::HttpResponse* response) {
if ( response )
m_label->setString(to_string(response->getResponseCode()));
}
request->setTag("GET");
cocos2d::network::HttpClient::getInstance()->send(request);
request->release();