I have a simple application that I am building that needs 3 areas on the screen that will have images that I want to scroll left and right.
I created a single scrollview that correctly displays images, scrolls left and right and just loads images as they are needed.
I created a xib, wired a uiscrollview to my controller and all is well.
If, however, I do this for 3 UIScrollView components on the screen it only seems to correctly draw one at any one time.
I created the 3 scroll views and for testing I also set their background colours. When the app loads up and they are initialised the last updated one draws correctly and displays the images but the other two dont show the images and instead just show the background color set on them. If I then then select one of the and scroll it it shows the image correctly and the other two show no images.
It's as if it can only correctly draw one UIScrollView at any one time.