iPhone - Adding new sections and rows into UITableView
Posted
by
Dev
on Stack Overflow
See other posts from Stack Overflow
or by Dev
Published on 2012-11-08T10:42:14Z
Indexed on
2012/11/08
11:01 UTC
Read the original article
Hit count: 153
I have a UITableView
to display a list of data.
The list will contain images, so I am loading images with lazy loading. Now I don't want to load the whole list at a time.
The loading should be like, first it should load some 10 records and when we scrolling down to the tableview
, it should automatically load next 10 records as on.
For this I need to add rows when I am scrolling to bottom. The tableview
may contain different sections.
So how can I add new rows and new sections at the end of the tableview
while scrolling down?
© Stack Overflow or respective owner