Files
Swiftgram/ASDKListKit/ASDKListKitTests/ASListTestSection.m
Adlai Holler 7763356b8a Replace IGListKit Method Macros with Actual Methods (#3094)
* Replace IGListKit macros with methods

* Remove docs in impl

* Update example
2017-02-27 11:08:39 -08:00

61 lines
1.1 KiB
Objective-C

//
// ASListTestSection.m
// AsyncDisplayKit
//
// Created by Adlai Holler on 12/25/16.
// Copyright © 2016 Facebook. All rights reserved.
//
#import "ASListTestSection.h"
#import "ASListTestCellNode.h"
@implementation ASListTestSection
- (instancetype)init
{
if (self = [super init])
{
_selectedItemIndex = NSNotFound;
}
return self;
}
- (NSInteger)numberOfItems
{
return self.itemCount;
}
- (CGSize)sizeForItemAtIndex:(NSInteger)index
{
return [ASIGListSectionControllerMethods sizeForItemAtIndex:index];
}
- (__kindof UICollectionViewCell *)cellForItemAtIndex:(NSInteger)index
{
return [ASIGListSectionControllerMethods cellForItemAtIndex:index sectionController:self];
}
- (void)didUpdateToObject:(id)object
{
if ([object isKindOfClass:[NSNumber class]])
{
self.itemCount = [object integerValue];
}
}
- (void)didSelectItemAtIndex:(NSInteger)index
{
self.selectedItemIndex = index;
}
- (ASCellNodeBlock)nodeBlockForItemAtIndex:(NSInteger)index
{
return ^{
ASListTestCellNode *node = [[ASListTestCellNode alloc] init];
node.style.preferredSize = CGSizeMake(100, 10);
return node;
};
}
@end