I have an NSScrollView with an NSTableView inside.
As you can see, there is a 100px high NSView that overlays the table view. (This is done intentionally, the overlay is slightly transparent and you can see a shadow of the table view scroll underneath).
The problem of course is that I need to add 100px of empty space to the bottom of the scroll view to compensate for the overlay. Otherwise you can't see the bottom of the table, it gets covered up by the overlay.
I've tried modifying the clip view, but seem to only be able to change its frame (losing the transparent overlay effect).
Maybe I'm not doing it quite right, please help!
contentSize
method and adding 100px to the height. Is that the correct way to do this? It had no effect for me. – Alex Marchant