Search code examples
ioscocoa-touchios6uiscrollview

How can I implement infinite list with custom views as rows in iOS?


I know that it is a common pattern in iOS applications to implement feeds for example. Here is a screenshot from official VK iOS application: enter image description here

As you see it is an infinite scrollable list where content (images,text , etc) is displayed in subviews of different size.

May be there is some ready for use view controller for this? Or I must create it manually - ScrollView with subviews which is created dynamically when I scroll it?


Solution

  • an infinite scrollable list where content (images,text , etc) is displayed in subviews

    You basically just gave the definition of UITableView