2017-01-05 4 views

Antwort

0

Sie wie folgt (obj - c)

- (void)collectionView:(UICollectionView *)collectionView 
     willDisplayCell:(UICollectionViewCell *)cell 
    forItemAtIndexPath:(NSIndexPath *)indexPath{ 

    if([indexPath row] == ((NSIndexPath*)[[collectionView indexPathsForVisibleRows] lastObject]).row){ 
     //end of loading, now your collection view is fully loaded. 
     // Now call the method you wanted to call 
    } 
} 
Verwandte Themen