I have an application with a primary window and a floating window with a tableview in it. When I modify in the primary window the input for the floating window (which makes the floating window inactive or not key) then the tableview does not show the new data in spite of calling reloadData: on the tableview.
I also tried refreshing the floating window (since it contains the tableview) with the following (without success): [[window contentview] setNeedsDisplay:YES];
So, the question basically is how to refresh a tableview in a window that is not the frontmost window, inactive if you will.
Thanks!