up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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

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

Your Answer

 
or
required, but never shown

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