I have a UIScrollView in which I want to add a huge amount of subviews. Every picture is 256x256 pixels. The ContentSize of the ScrollView is 8.192 pixels, so this would be 32x32 images. I want to only load the UIImages / create the UIImagesViews I am currently seeing. I probably have to use scrollViewDidScroll and determine the correct position of that image via contentOffset. The Images are on a server and I load them asynchronously. The folder structure is "Images/Row/Column/row_column.jpg" Where Row and Column will be replaced by the actual number e.g. "Images/4/2/4_2.jpg"
I want to stick with UIScrollView, because it gives me more possibilities than a UICollectionView.
I hope you can guide me in the right direction.