When using XCode for writing for the iphone SDK... like a simple function that accepts a text-string URL and visits the website, and returns the HTML... which is better?
- Use Objective-C and write a "method" that accepts an NSString and returns an NSString. or
- Use C and write a "function" that accepts a string and returns a string.
How do I decide which to use... here... and in any of my code?