I'm building a client/server app. The server sends me lots of information, that I need to display on the iPhone in a "console". I need to display several of columns (time, user, message).
What is the best approach for this?
I thought about creating a UIWebView and create a table .. but will I be able to add rows as information comes from the server? Can I hook into a table in the UIWebView and add a new row now and then?
Should I build it using a UITableView?
What would you do?
Thanks!!!
Mojo