How do I set the starting point of a UIScrollView? I would like to add a UIImageView left of the UIScrollView but changing the contentSize only adds scrolling room to the right of the scrollview. How do I add an ImageView left of the scrollView’s (0,0) point and make it part of the scrollview’s content size?
Share
Hopefully I’ve got what you’re trying to do here. I think this just takes a few turns with the contentOffset to get right.
Starting off;
(Note that in the code below, i’ve simply added a UIView and not an imageView)
Does that help?