iPhone GUI for real-time log message display

Posted by zer0stimulus on Stack Overflow See other posts from Stack Overflow or by zer0stimulus
Published on 2010-04-12T02:45:22Z Indexed on 2010/04/12 2:53 UTC
Read the original article Hit count: 323

Filed under:

My goal is to have a screen on my GUI dedicated to logging real-time messages generated by my internal components. A certain limit will be set on the log messages so that older messages are pruned.

I'm thinking about implementing using a UITextView with a NSMutableString to store the output. I would have to perform manual pruning somehow on the NSMutableString object. Is a better way to implement this?

© Stack Overflow or respective owner

Related posts about iphone