I have a bit of a confusing situation. I have a form after which I create a url and make an asynchronous server call. That data does not need to be secure.
Here is what I have:
NSString *urlString = @"http://my.url.com/script_name.php?subject=hardcoded_string&body=";
NSString *inputString = textArea.text;
NSString *url_to_send = [NSString stringWithFormat:@"%@%@", urlString , inputString];
NSURL *url = [NSURL URLWithString:url_to_send];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url ];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
...
Is there something that I am doing incorrectly here in how I create the url?
Thanks!