-
Notifications
You must be signed in to change notification settings - Fork 16
/
VCollectionViewGridLayout.podspec
30 lines (29 loc) · 1.43 KB
/
VCollectionViewGridLayout.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "VCollectionViewGridLayout"
s.version = "0.0.2"
s.summary = "Simple grid layout for UICollectionView with sticky headers."
s.description = <<-DESC
Simple grid layout for UICollectionView with sticky headers.
Vertical scrolling.
##Note about iOS7
The original intent of this library was to fix a multitude of
animation issues with `UICollectionViewFlowLayout` and batch updates
in iOS6. The "Expand" and "Sort & Filter" sample projects illustrate
two such issues with side-by-side comparisons of `UICollectionViewFlowLayout`
and `VCollectionViewGridLayout`. Note that in iOS7, both of these sample
projects work correctly with `UICollectionViewFlowLayout`, so this library
may not provide any benefit over `UICollectionViewFlowLayout` beyond
sticky headers.
DESC
s.homepage = "https://github.com/vast-engineering/uicollectionview-gridlayout"
s.license = { :type => "Apache 2.0" }
s.author = { "wtmoose" => "[email protected]" }
s.source = { :git => "https://github.com/vast-eng/uicollectionview-gridlayout.git", :tag => '0.0.2' }
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source_files = 'VCollectionViewGridLayout/**/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
s.frameworks = 'UIKit', 'CoreData', 'Foundation'
s.requires_arc = true
s.dependency 'TLIndexPathTools'
end