There is a bug with my UIScrollView
populated with xib
files that does not accurately resize xibs to fit the view. As such, when scrolling there is a noticeable offset emanating from the right side of each presented xib element and the contexts of the next element bleed into the previous. It formats correctly on the iPhone 6, but no screen larger than it.
Given that there are no constants in my code and the dimensions should be retrieved from the view itself regardless of size (using view.frame.width
and view.frame.height
), I wonder if there's some larger point I'm missing about UIScrollView
or wether or not it simply isn't the best solution to my problem. Is there another class for creating a sort of scrollable horizontal slide-show?