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

How do you get web page data and put the data into a string?

Something like:

NSString *webPageBody = GetWebPageData("www.mysite.com/webpage.html");

in the webPageBody, I would like to see "html my web page html".

share|improve this question

1 Answer

up vote 10 down vote accepted
NSString *url = @"http://www.example.com";
NSURL *urlRequest = [NSURL URLWithString:url];
NSError *err = nil;

NSString *html = [NSString stringWithContentsOfURL:urlrequest encoding:NSUTF8StringEncoding error:&err];

if(err)
{
    //Handle 
}
share|improve this answer
*notice the sensitive-case error of urlrequested and urlRequested after fixing this, it works – Vitim.us Jan 15 '12 at 3:06

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.