How do you make a table view NOT scroll horizontally with trackpads

So, I have a bunch of columns off to the right that I want to remain hidden. I turned off “show horizontal scrollbar” but a trackpad can still swipe to reveal these hidden columns. Any method to get rid of that capability?

Hello,

Uncheck horizontal elasticity for your table view.

I think changing the elasticity just affects how it bounces when you get to the end of the scroll. If you want columns to stay hidden, just set their hidden property to true (in code or with a check box in IB).

Ric

Or just don’t have them…

Thanks, just found that! Made the columns hidden and that does it.

Just for my curiosity. As Shane pointed out, what’s the use of columns if they remain hidden?