Skip to content

Commit adad20e

Browse files
committed
Updated example project
1 parent 9e31b7c commit adad20e

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

Example/Example/ExampleViewController.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectio
8989
return 5;
9090
}
9191

92+
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
93+
{
94+
return UIEdgeInsetsMake(10, 10, 10, 10);
95+
}
96+
9297
#pragma mark -
9398

9499
- (BOOL)prefersStatusBarHidden

Example/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
platform :ios, "6.0"
22

33
target :Example do
4-
pod 'UICollectionViewLeftAlignedLayout', :path => '../'
4+
pod 'UICollectionViewLeftAlignedLayout', :path => '..'
55
pod 'OpenSans'
66
pod 'UIColor+FlatColors'
7-
end
7+
end

Example/Podfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
PODS:
22
- OpenSans (1.0.0)
3-
- UICollectionViewLeftAlignedLayout (0.0.1)
3+
- UICollectionViewLeftAlignedLayout (0.0.2)
44
- UIColor+FlatColors (0.0.1)
55

66
DEPENDENCIES:
77
- OpenSans
8-
- UICollectionViewLeftAlignedLayout (from `../`)
8+
- UICollectionViewLeftAlignedLayout (from `..`)
99
- UIColor+FlatColors
1010

1111
EXTERNAL SOURCES:
1212
UICollectionViewLeftAlignedLayout:
13-
:path: ../
13+
:path: ..
1414

1515
SPEC CHECKSUMS:
16-
OpenSans: ba92552b9df0333c4f4dab5c0105f55594a6cf9c
17-
UICollectionViewLeftAlignedLayout: 609b48228c055467613760b7f729aeb705b91c56
18-
UIColor+FlatColors: 417fbe0894c1da0e7ab6505e1409a26052caa75f
16+
OpenSans: 3baec7cba529831a54938be34fe3866d88397674
17+
UICollectionViewLeftAlignedLayout: e4a3b3bc0192456a263e772f9cfd2bf6638fafa2
18+
UIColor+FlatColors: 621b66928bbf5a89581a7a5c4099b2c3836f85bb
1919

20-
COCOAPODS: 0.32.1
20+
COCOAPODS: 0.33.1

0 commit comments

Comments
 (0)