perkeep/clients/ios-objc/photobackup/LAViewController.m

50 lines
1.0 KiB
Mathematica
Raw Normal View History

//
// LAViewController.m
// photobackup
//
// Created by Nick O'Neill on 10/20/13.
// Copyright (c) 2013 The Camlistore Authors. All rights reserved.
//
#import "LAViewController.h"
@interface LAViewController ()
@end
@implementation LAViewController
- (void)viewDidLoad
{
[super viewDidLoad];
}
#pragma mark - collection methods
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return 5;
}
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 1;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"collectionCell" forIndexPath:indexPath];
cell.backgroundColor = [UIColor redColor];
return cell;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end