I need to have a string like this,
Content-Disposition = name="uploaded file"
in my HTTP request header.
I tried using escape sequences \" like this (as mentioned here)
NSString *valueString = @"name=\"uploadedfile\" ";
it returns me an output like this : "Content-Disposition" = "name=\"uploadedfile\"";
how can i do this? Please help. Thanks.