mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-01-12 22:47:31 +08:00
25 lines
488 B
Objective-C
25 lines
488 B
Objective-C
//
|
|
// FRPGalleryFlowLayout.m
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/13/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import "FRPGalleryFlowLayout.h"
|
|
|
|
@implementation FRPGalleryFlowLayout
|
|
|
|
-(instancetype)init {
|
|
if (!(self = [super init])) return nil;
|
|
|
|
self.itemSize = CGSizeMake(145, 145);
|
|
self.minimumInteritemSpacing = 10;
|
|
self.minimumLineSpacing = 10;
|
|
self.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|