mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-14 21:08:48 +00:00
Summary: Add API for #315. Not sure if this is what you want rnystrom though 🤔. Will add tests after you confirm. - [x] All tests pass. Demo project builds and runs. - [x] I added tests, an experiment, or detailed why my change isn't tested. - [ ] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Closes https://github.com/Instagram/IGListKit/pull/456 Reviewed By: jessesquires Differential Revision: D4697190 Pulled By: rnystrom fbshipit-source-id: f8513cf2fa33441eb40f486954136553d19dda0c
50 lines
1.2 KiB
Objective-C
50 lines
1.2 KiB
Objective-C
/**
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "IGListTestContainerSizeSection.h"
|
|
|
|
@implementation IGListTestContainerSizeSection
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
self.inset = UIEdgeInsetsMake(1.0, 1.0, 1.0, 1.0);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSArray <Class> *)cellClasses {
|
|
return @[UICollectionViewCell.class];
|
|
}
|
|
|
|
- (NSInteger)numberOfItems {
|
|
return self.items;
|
|
}
|
|
|
|
- (CGSize)sizeForItemAtIndex:(NSInteger)index {
|
|
return CGSizeMake(100, 10);
|
|
}
|
|
|
|
- (UICollectionViewCell *)cellForItemAtIndex:(NSInteger)index {
|
|
return [self.collectionContext dequeueReusableCellOfClass:UICollectionViewCell.class
|
|
forSectionController:self
|
|
atIndex:index];
|
|
}
|
|
|
|
- (void)didUpdateToObject:(id)object {
|
|
if ([object isKindOfClass:[NSNumber class]]) {
|
|
self.items = [object integerValue];
|
|
}
|
|
}
|
|
|
|
- (void)didSelectItemAtIndex:(NSInteger)index {
|
|
}
|
|
|
|
@end
|