Get String Instead of Source - Xcode Cocoa
- by Kevin
Hello everyone,
I have a program that will scan the contents of a website, and display it in a textbox. The problem is that it shows the html source. For example if my html code was:
<html>
<body>
<p>Hello</p>
</body>
</html>
instead of just showing
hello,
it'll show the code above...
How can I get my objective c program to just read the hello, and not the html source..
I was assuming that it was the encoding when reading the website, but I might be possibly wrong..
I would greatly appreciate it if someone could give me a reasonable answer..
Best Regards,
Kevin