// // ViewController.m // Sample // // Copyright (c) 2014-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. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // #import "ViewController.h" #import #import "MosaicCollectionViewLayout.h" #import "ImageCellNode.h" #import "ImageCollectionViewCell.h" // This option demonstrates that raw UIKit cells can still be used alongside native ASCellNodes. static BOOL kShowUICollectionViewCells = YES; static NSString *kReuseIdentifier = @"ImageCollectionViewCell"; static NSUInteger kNumberOfImages = 14; @interface ViewController () { NSMutableArray *_sections; ASCollectionNode *_collectionNode; } @end @implementation ViewController #pragma mark - #pragma mark UIViewController - (instancetype)init { MosaicCollectionViewLayout *layout = [[MosaicCollectionViewLayout alloc] init]; layout.numberOfColumns = 2; layout.headerHeight = 44.0; _collectionNode = [[ASCollectionNode alloc] initWithCollectionViewLayout:layout]; _collectionNode.dataSource = self; _collectionNode.delegate = self; _collectionNode.backgroundColor = [UIColor whiteColor]; if (!(self = [super initWithNode:_collectionNode])) return nil; _sections = [NSMutableArray array]; [_sections addObject:[NSMutableArray array]]; for (NSUInteger idx = 0, section = 0; idx < kNumberOfImages; idx++) { NSString *name = [NSString stringWithFormat:@"image_%lu.jpg", (unsigned long)idx]; [_sections[section] addObject:[UIImage imageNamed:name]]; if ((idx + 1) % 5 == 0 && idx < kNumberOfImages - 1) { section++; [_sections addObject:[NSMutableArray array]]; } } [_collectionNode registerSupplementaryNodeOfKind:UICollectionElementKindSectionHeader]; return self; } - (void)viewDidLoad { [super viewDidLoad]; _collectionNode.view.layoutInspector = self; [_collectionNode.view registerClass:[ImageCollectionViewCell class] forCellWithReuseIdentifier:kReuseIdentifier]; } - (void)reloadTapped { [_collectionNode reloadData]; } #pragma mark - ASCollectionNode data source. - (ASCellNodeBlock)collectionNode:(ASCollectionNode *)collectionNode nodeBlockForItemAtIndexPath:(NSIndexPath *)indexPath { if (kShowUICollectionViewCells && indexPath.item % 3 == 1) { // When enabled, return nil for every third cell and then cellForItemAtIndexPath: will be called. return nil; } UIImage *image = _sections[indexPath.section][indexPath.item]; return ^{ return [[ImageCellNode alloc] initWithImage:image]; }; } - (ASSizeRange)collectionView:(ASCollectionView *)collectionView constrainedSizeForNodeAtIndexPath:(NSIndexPath *)indexPath { MosaicCollectionViewLayout *layout = (MosaicCollectionViewLayout *)[collectionView collectionViewLayout]; return ASSizeRangeMake(CGSizeZero, [layout itemSizeAtIndexPath:indexPath]); } - (ASSizeRange)collectionView:(ASCollectionView *)collectionView constrainedSizeForSupplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath { MosaicCollectionViewLayout *layout = (MosaicCollectionViewLayout *)[collectionView collectionViewLayout]; return ASSizeRangeMake(CGSizeZero, [layout headerSizeForSection:indexPath.section]); } - (ASScrollDirection)scrollableDirections { return ASScrollDirectionVerticalDirections; } /** * Asks the inspector for the number of supplementary views for the given kind in the specified section. */ - (NSUInteger)collectionView:(ASCollectionView *)collectionView supplementaryNodesOfKind:(NSString *)kind inSection:(NSUInteger)section { return [kind isEqualToString:UICollectionElementKindSectionHeader] ? 1 : 0; } - (ASCellNode *)collectionNode:(ASCollectionNode *)collectionNode nodeForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath { NSDictionary *textAttributes = @{ NSFontAttributeName: [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline], NSForegroundColorAttributeName: [UIColor grayColor] }; UIEdgeInsets textInsets = UIEdgeInsetsMake(11.0, 0, 11.0, 0); ASTextCellNode *textCellNode = [[ASTextCellNode alloc] initWithAttributes:textAttributes insets:textInsets]; textCellNode.text = [NSString stringWithFormat:@"Section %zd", indexPath.section + 1]; return textCellNode; } - (NSInteger)numberOfSectionsInCollectionNode:(ASCollectionNode *)collectionNode { return _sections.count; } - (NSInteger)collectionNode:(ASCollectionNode *)collectionNode numberOfItemsInSection:(NSInteger)section { return [_sections[section] count]; } - (CGSize)collectionView:(ASCollectionNode *)collectionNode layout:(UICollectionViewLayout *)collectionViewLayout originalItemSizeAtIndexPath:(NSIndexPath *)indexPath { ASCellNode *cellNode = [collectionNode nodeForItemAtIndexPath:indexPath]; if ([cellNode isKindOfClass:[ImageCellNode class]]) { return [[(ImageCellNode *)cellNode image] size]; } else { return CGSizeMake(100, 100); // In kShowUICollectionViewCells = YES mode, make those cells 100x100. } } - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath { return [_collectionNode.view dequeueReusableCellWithReuseIdentifier:kReuseIdentifier forIndexPath:indexPath]; } - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath { return nil; } @end