I'm trying to create a status window that would display logging information similar to the following:
Code:
27-JUN-11 01:12 Request Sent
27-JUN-11 01:12 Response Received: 200/OK
27-JUN-11 01:14 Request Sent
27-JUN-11 01:14 Request timed out
27-JUN-11 01:14 Request Sent
27-JUN-11 01:14 Response Received: 202/ACCEPTED
.
.
.
is a UITextView appropriate for this? Is there something better?
I have one view with a view controller (and view) that is posting the requests, and a second view controller (and view) that is running the log window. There is a root view controller with a tab bar controller that allows the user to switch between them.
Also, should I write the log messages directly to the UI element, or should I write the responses to a log object, and bind the log object to the UI element? I am not exactly sure how to do the latter method, using objective C, so any help there would be appreciated.
Thanks!