My app needs to get data from a website, and the website takes multiple parameters, in a format like: https://app.website.com/page.asp?par1=0&par2=11. However, the user need to enter the website in the settings page. How can I store the adress so that I can add the correct parameters before I use it? Previously, I had it hard coded as a formatted string, but obviously that won't work now.
(from comment)
NSString *
URLString = [NSString stringWithFormat:@"app.website.com/page.asp?mapped=%d&pvid=%@";, mapped, [pid substringFromIndex:1]];
NSURL *url = [NSURL URLWithString:URLString];
NSURLRequest *req = [NSURLRequest requestWithURL:url];
connection = [[NSURLConnection alloc] initWithRequest:req delegate:self startImmediately:YES];
Thanks!