Skip to content

Commit 0ca5099

Browse files
committed
Left aligned from now on
1 parent 61854bd commit 0ca5099

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed

.gitignore

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

SeparatorCollectionViewFlowLayout.podspec

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SeparatorCollectionViewFlowLayout"
3-
s.version = "1.0.5"
3+
s.version = "1.1"
44
s.summary = "A UICollectionViewFlowLayout implementation to allow separators between cells"
55
s.description = <<-EOS
66
A UICollectionViewFlowLayout implementation to allow separators between cells
@@ -20,6 +20,7 @@ Pod::Spec.new do |s|
2020
ss.source_files = "Source/*.swift"
2121
ss.framework = "Foundation"
2222
ss.framework = "UIKit"
23+
ss.dependency = "UICollectionViewLeftAlignedLayout"
2324
end
2425

2526
end

Source/SeparatorCollectionViewFlowLayout.swift

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88

99
import Foundation
1010
import UIKit
11+
import UICollectionViewLeftAlignedLayout
1112

12-
public class SeparatorCollectionViewFlowLayout: UICollectionViewFlowLayout {
13+
public class SeparatorCollectionViewFlowLayout: UICollectionViewLeftAlignedLayout {
1314

1415
@IBInspectable var separatorWidth: CGFloat = 1 {
1516
didSet {

0 commit comments

Comments
 (0)