I'm building a UIScrollView inside a UITableViewCell so the cell can scroll left and right. I set the scroll view up in a storyboard without any AutoLayout constraints, and created an outlet for it. I put a UILabel inside the scroll view and then set the contentSize of the scrollview in code.
But when I run it in the simulator, I'm completely unable to scroll the cell left or right. What am I doing wrong?
Here's a little project I built showing it off in a simple case: http://cl.ly/0r2f0K1K3L1s
I'd include more code, but there's really not much more to it than what I outlined, as most of it is done in the storyboard. Is there something special to use storyboards and scroll views?