As shown below I have a NSScrollView with 2 panels (3 actually but not shown in the image). I am wondering if this is simply a performance issue or something more erroneous to do with auto layout?
Neither of the views are particularly complicated or have very complicated constraints. The left view hierarchy is,
Left NSSplitView's view |-- Custom view NB lowered the trailing priority here... view]-(0@250)-| |--NSTextField |--NSTableView
The most advanced thing I did was to lower the priority which attaches the container view to the superview. this is because I want the panel to be able to cover up the left hand side without the left hand side resizing. When the divided is fully to the left the views there still have the same size it's just that the right panel now is above the view left panel's views.
Is there a better way to achieve this effect?
What could be causing this drawing artefact?