Re: NSTextView won't update via NSThread

2009-11-08 Thread Dalton Hamilton
On Nov 6, 2009, at 5:08 PM, Stephen J. Butler wrote: On Fri, Nov 6, 2009 at 3:50 PM, Dalton Hamilton wrote: Well, from the code you've shown us, you call "[outHandle readDataToEndOfFile]". Which means it waits for all the data before updating the view. So yes, the view will

NSTextView won't update via NSThread

2009-11-06 Thread Dalton Hamilton
:self withObject:nil]; my app hangs on the attempt to update the myTextView NSTextView [[[myTextView textStorage] mutableString] appendString:outString]; Does anyone have any idea why NSTextView won't update when the code is a thread? Thanks a lot for any advice. Dalto