I'm not sure this is even possible, but figured this would be the place to ask.
Basically I'm trying to populate a UITextView within the app with the console log.
Right now I'm just calling a method on my RootViewController and passing a string. That string gets appended to an NSMutableString and I use the mutable string to populate the UITextView.
The problem I'm running into with this approach is that after the string reaches a certain size, it starts affecting performance and making the app all sluggish.
If I could somehow populate the UITextView with the console log, it will save me from the negative side-effects of maintaining a large string.
Anyone know how to do this? Is there another approach I should be considering?
Thanks in advance!