There is probably a really simple answer for this, but I can't seem to put my finger on it.
I am getting the contents of a web URL using (See Below)
NSData *data = [NSData dataWithContentsOfURL:webURL];
What I want to do is display this NSData in a readable form, not the hexadecimal representation.

webURL?