This question already has an answer here:
- UIRefreshControl at the bottom of the UITableView iOS6? 8 answers
Is there any way to add a UIRefreshControl below a UITableView? I created a preview of what I want to achieve.
This question already has an answer here:
Is there any way to add a UIRefreshControl below a UITableView? I created a preview of what I want to achieve.
These won't give the UIRefresh Controls but you can add these at the bottom of the Screen
Declare below in your header
UIActivityIndicatorView *spinner;
Initialise the same in ViewDidLoad in your implementation
spinner = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray] autorelease];
[spinner stopAnimating];
spinner.hidesWhenStopped = NO;
spinner.frame = CGRectMake(0, 0, 320, 44);
self.tableviewName.tableFooterView = spinner;
Add These and it will be called when tableview Scrolled
- (void)scrollViewDidEndDragging:(UIScrollView *)aScrollView
willDecelerate:(BOOL)decelerate{
CGPoint offset = aScrollView.contentOffset;
CGRect bounds = aScrollView.bounds;
CGSize size = aScrollView.contentSize;
UIEdgeInsets inset = aScrollView.contentInset;
float y = offset.y + bounds.size.height - inset.bottom;
float h = size.height;
float reload_distance = 50;
if(y > h + reload_distance) {
NSLog(@"load more data");
[spinner startAnimating];
}
}
Hope This will help you out !