6) Okay, sounds good. Will try this if/when the time comes.
7) For
my project, I need to be able to send POST data to my server (things like the map's name and a .pak file containing the user-created map).
Is there any built-in classes in EE that will allow me to do this? I don't believe there is, so I figured I will have to use some iOS classes, such as
NSURLConnection. Trouble is, I get errors (in the file, MacTypes.h) when including it:
Conflicting declaration 'typedef char* Ptr'
'Ptr' has a previous declaration as 'typedef void* Ptr'
Reference to 'Rect' is ambiguous
Expected initializer before '*' token
I am currently including it in the tutorial project like so:
Code:
#include "stdafx.h"
#include <Foundation/NSURLConnection.h>
Also, I have told the compiler to "Compile Sources As" Objective-C++ instead of "According to File Type" as described in
this post.
I have tried including several other iOS classes and they all give the exact same error messages, which I find to be strange. Any ideas?