- Home /
WWWForm doesn't work on iOS
The following code works on Windows Desktop and Android platforms, but does not work on iOS:
IEnumerator Send(string data)
{
WWWForm form = new WWWForm();
form.AddField("data", data);
WWW www = new WWW(baseurl + "/api-data.php", form);
yield return www;
}
On iOS the function seems to exit immediately without sending/receiving any data.
How can I fix this for iOS?
Comment
Same problem here, it works on simulator but not on iOS device, did you solved this issue ?
Your answer
Follow this Question
Related Questions
Is there a way to fix uploadprogress on mobile? 1 Answer
4k data limit on wwwform post? 2 Answers
Setting maxConnections to -1 not working 0 Answers
Network check does not work on iOS 1 Answer
Button To Web Address 1 Answer