vote up 0 vote down star

I am writing an Objective-C application which communicates with a USB device. The application writes certain data to the device continuously and displays the status of the write operation in a textView, which is an object of NSTextView. I call the -[NSTextView insertText:] method in the loop when I get the write operation status from the device.

The problem is that the NSTextView doesn't get updated at every call of -insertText:. I get the entire contents of the NSTextView only after the entire loop has been executed.

I didn't see an appropriate refresh or update method for NSTextView class. How can I recieve the status of the operation and update the NSTextView simultaneously?

- (IBAction)notifyContentHasChanged:(NSInteger) block {
    NSString *str;
    str = [NSString stringWithFormat:@"Block Written Successfully: %d\n", block];
    [data insertText:str];
}

- (IBAction)func {
    while(USB_SUCCESS(status))
    {
        printf("\nBlocks Written Successfully: %d",BlockCnt);
        [refToSelf notifyContentHasChanged:BlockCnt];
    }
}

Note that the printf on console is updated timely but not the NSTextView.

flag

0% accept rate

3 Answers

vote up 0 vote down

You should be able to refresh the NSTextView via the -setNeedsDisplay: method.

link|flag
Generally, you don't tell a view to -setNeedsDisplay: from outside — a view tells itself -setNeedsDisplay: when one of its properties changes. Furthermore, any redisplay will happen the next pass through the run loop, not immediately, which is exactly what the questioner is seeing. – Chris Hanson Dec 6 '08 at 8:52
I use -setNeedsDisplay: all the time on views from outside those views. Can you provide more information as to why that should be avoided, or do I misunderstand you? Thanks. – titaniumdecoy Dec 7 '08 at 7:10
vote up -1 vote down

The problem is solved. It required displayIfNeeded() method of the NSView class.

link|flag
-[NSView displayIfNeeded] is almost never the right thing to use. It's not really "solved" - your users will still get the spinning cursor, because your application isn't handling events normally. You really should be doing the work in the background. – Chris Hanson Dec 5 '08 at 16:07
vote up 3 vote down

Mac OS X does not flush changes to views to the screen immediately, to avoid the flicker and tearing that's common in such situations. This means you can't just sit in a loop and perform blocking operations while you update a view; if you do this, neither the view nor anything else in your application's human interface will update, and your application will appear hung and eventually get the spinning cursor.

(The spinning cursor appears when an application hasn't communicated with the window server after a small amount of time; there is no way to suppress this, by design. It doesn't mean "wait," it means "this application has gone off into the weeds" and you should strive to ensure it never appears for your users.)

To manage blocking operations in Cocoa, you can do one of two things:

  1. You can perform the blocking operations in a background thread and communicate the results to the main thread for updating your human interface. For example, you can do I/O or socket communications this way using select(2) and the standard UNIX file I/O calls.

  2. You can schedule the operations on a run loop (such as the main run loop) if a compatible version is available; this will typically manage a background thread for the blocking version of the operation for you. For example, NSFileHandle provides a run loop compatible abstraction atop file descriptors; NSStream does this for socket communications as well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.