Solicitud con NSURLRequest

Estoy tratando de hacer una aplicación que usa una base de datos (en realidad en mi host local), probé con ASIHTTPRequest pero tengo muchos problemas con iOS 5 (aprendí cómo usar el formulario ASIHTTPRequest allí:http://www.raywenderlich.com/2965/how-to-write-an-ios-app-that-uses-a-web-service

Ahora estoy intentando con la API proporcionada por Apple: NSURLRequest / NSURLConnection, etc ...

Leí la guía en línea de Apple y hago este primer código:

<code>- (void)viewDidLoad
{

    [super viewDidLoad];

     // Do any additional setup after loading the view, typically from a nib.



    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL

                                URLWithString:@"http://localhost:8888/testNSURL/index.php"]

                                cachePolicy:NSURLRequestUseProtocolCachePolicy

                                timeoutInterval:60.0];



    [request setValue:@"Hello world !" forKey:@"myVariable"];



    NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:request delegate:self];

    if (theConnection) {

        receiveData = [NSMutableData data];   

    }

}
</code>

Agregué los delegados que necesitaba la API.

<code>- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data

- (void)connection:(NSURLConnection *)connection

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
</code>

Aquí está mi código php:

<code><?php
if(isset($_REQUEST["myVariable"])) {
    echo $_REQUEST["myVariable"];
}
else    echo '$_REQUEST["myVariable"] not found';
?>
</code>

Entonces, ¿qué está mal? Cuando inicio la aplicación, se bloqueará inmediatamente con esta salida:

**

<code>**> 2012-04-09 22:52:16.630 NSURLconnextion[819:f803] *** Terminating app
> due to uncaught exception 'NSUnknownKeyException', reason:
> '[<NSURLRequest 0x6b32bd0> setValue:forUndefinedKey:]: this class is
> not key value coding-compliant for the key myVariable.'
> *** First throw call stack: (0x13c8022 0x1559cd6 0x13c7ee1 0x9c0022 0x931f6b 0x931edb 0x2d20 0xd9a1e 0x38401 0x38670 0x38836 0x3f72a
> 0x10596 0x11274 0x20183 0x20c38 0x14634 0x12b2ef5 0x139c195 0x1300ff2
> 0x12ff8da 0x12fed84 0x12fec9b 0x10c65 0x12626 0x29dd 0x2945) terminate
> called throwing an exception**
</code>

**

Supongo que significa que hay algo que está mal en esta línea:

<code>[request setValue:@"Hello world !" forKey:@"myVariable"];
</code>

Realmente funciona si comento esta línea.

Mi pregunta es: ¿Cómo puedo enviar datos a una API de PHP, usando NSURLRequest y NSURLConnexion?

Gracias por ayudar.

PD Por cierto, tengo pocos conocimientos sobre el servidor, PHP ect, ...

Respuestas a la pregunta(2)

Su respuesta a la pregunta