I am using Xcode 10.1 and am programming using Swift in the ViewController.swift
file.
I have a horizontally scrolling UIStackView that works perfectly. The only issue is that the scrollbar appears whenever I begin to scroll. I looked online and there were plenty of tutorials on how to make similar UIStackViews but none of them explained how to hide the scrollbar. Does anybody know how to do this?
stackView.showsHorizontalScrollIndicator = false
Gives me the error
"Value of type 'UIStackView' has no member 'showsHorizontalScrollIndicator' "