Simple Trick with NSURL
This is a simple little tip, but it's worth knowing that NSString and NSURL can be used together to quickly grab the contents of a web page or RSS feed. It's as simple as this:
NSURL * myURL;
myURL = [NSURL URLWithString: @"http://theocacao.com/index.rss"];
NSString * contents;
contents = [NSString stringWithContentsOfURL: myURL];
NSLog (@"%@", contents);
This will print out the contents of the Theocacao RSS feed.

Simple Trick with NSURL
Posted Oct 4, 2005 — 4 comments below
Posted Oct 4, 2005 — 4 comments below
Mike Zornek — Oct 04, 05 413
Uli Kusterer — Oct 06, 05 421
frank — Oct 07, 05 422
Steve — Oct 18, 05 439
Any ideas? Thanks!