I have an NSView who draw something every second. Also, i have a setting window with some controls. The problem is that: When i want change settings, my view blocked. What can i do? For update the view I use NSTimer :
NSTimer.scheduledTimerWithTimeInterval(refreshInterval, target: self, selector:"updateView", userInfo: nil, repeats: true)
and, in updateView function I call myView.needsDisplay = true ;
Is very annoying to try open an popUpButton and myView to freeze.
Have you any idea what can I do? Thanks!