I am creating a paging UIScrollView
which contains several pages. On each page is a UIViewController
some of which are quite memory intensive and others which will be used multiple times and I hope to reuse.
My first attempt was to create the illusion of many pages by using an infinite paging similar to this answer continuous paging.
I've encountered some difficulty in implementing this though. What is the best approach to load many view controllers in a scrollView without having them all instantiated at the same time.