Files
ScaledCenterCarousel/Example/Tests/YTCollectionViewTestDataSource.m
Yuriy Tolstoguzov de1cd0a218 Initial commit
2017-04-23 19:40:05 +03:00

25 lines
618 B
Objective-C

//
// YTCollectionViewTestDataSource.m
// ScaledCenterCarousel
//
// Created by yuriy-tolstoguzov on 4/23/17.
// Copyright © 2017 yuriy-tolstoguzov. All rights reserved.
//
#import "YTCollectionViewTestDataSource.h"
@implementation YTCollectionViewTestDataSource
- (NSInteger)collectionView:(UICollectionView *)collectionView
numberOfItemsInSection:(NSInteger)section {
return self.numberOfItems;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath {
return [[UICollectionViewCell alloc] init];
}
@end