vote up 0 vote down star

I'm writing a minimal web browser using Cocoa. I've been struggling in my attempt to create an address bar ( basically an NSComboBox in which the drop down contains previously visited URLS ).

The main issue is that the backForwardList attribute of my WebView object is updated at unpredictable times. For instance, if I select a url from the drop down ( the datasource for which is the backForwardList ), then initiate a load request, by the time the dropdown updates the selected item, the backForwardList has been changed and the index of the selectedItem is out of date, so the incorrect address is displayed. What is a good line of attack for dealing with timing issues like this?

flag

67% accept rate

1 Answer

vote up 0 vote down check

Copy the list before the pop-up opens. Use only this copy until the combo box resigns first responder.

link|flag
Thanks for the tip about first responder. Actually solves more than just this problem for me. – awt Sep 9 at 5:37

Your Answer

Get an OpenID
or

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