我使用 UICollectionView 从 instagram 获取一组图像,但是当我到达页面底部时,我想加载过去的图像。但是,我确实收到了过去的图像,因为它们已登录到控制台但没有出现在屏幕上。
这是我检索图像的代码:
- (void)nextInstagramPage:(NSIndexPath *)indexPath{
NSDictionary *page = self.timelineResponse[@"pagination"];
NSString *nextPage = page[@"next_url"];
[[InstagramClient sharedClient] getPath:[NSString stringWithFormat:@"%@",nextPage] parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {
self.timelineResponse = responseObject;
[self.collectionView reloadData];
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Failure: %@", error);
}];
}
这是我检测用户何时到达屏幕底部的代码:
- (void)collectionView:(UICollectionView *)collectionView didEndDisplayingCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath{
[self nextInstagramPage:indexPath];
}
编辑:我发现collectionview是uiscrollview的一个子类,那么我将如何正确实现一个具有索引路径的方法来检测滚动视图的底部!