我想用UICollectionView
.
//detect the bottom and add new data
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if(scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.bounds.size.height)) {
[NSObject cancelPreviousPerformRequestsWithTarget:self];
NSLog(@"%s",__PRETTY_FUNCTION__);
//ensure that the end of scroll is fired.
[self performSelector:@selector(scrollViewDidEndScrollingAnimation:) withObject:nil afterDelay:0.3];
}
}
-(void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView
{
[NSObject cancelPreviousPerformRequestsWithTarget:self];
currentPage+=1;
// First figure out how many sections there are
NSInteger lastSectionIndex = [self.collectionView numberOfSections] - 1;
NSInteger lastItemIndex = [self.collectionView numberOfItemsInSection:lastSectionIndex] - 1;
NSIndexPath *pathToLastItem = [NSIndexPath indexPathForItem:lastItemIndex inSection:lastSectionIndex];
[Flickr searchFlickrForTerm:_searchBar.text page:currentPage completionBlock:^(NSString *searchTerm, NSArray *results, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{
[self.searchResults[searchTerm] addObjectsFromArray:results];
[self.collectionView reloadData];
[_collectionView scrollToItemAtIndexPath:pathToLastItem atScrollPosition:UICollectionViewScrollPositionTop animated:YES];
});
}];
}
问题是scrollViewDidEndScrollingAnimation
每次scrollToItemAtIndexPath:
执行方法时都会触发。结果,我看到了一个连续的幻灯片。
我尝试使用dispatch_after
不同的延迟,但没有帮助。
contentSize
据我了解, scrollView不会更新它[self.collectionView reloadData];
如何解决?