で無限スクロールを実装したい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];
修正方法は?