Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
Can you show us the code you had previously, that might help me understand your question better. – Alan Moore Sep 6 '11 at 14:20
Can't show website but: 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]; – Aaron Sep 6 '11 at 14:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.