-
Notifications
You must be signed in to change notification settings - Fork 30
/
CollectionViewShelfLayout.podspec
24 lines (15 loc) · 1.29 KB
/
CollectionViewShelfLayout.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
Pod::Spec.new do |s|
s.name = "CollectionViewShelfLayout"
s.version = "0.6.6"
s.summary = "A UICollectionViewLayout subclass displays as rows of items similar to App Store Feature tab without a nested UITable/CollectionView hack."
s.description = "A UICollectionViewLayout subclass displays its items as rows of items similar to the App Store Feature tab without a nested UITableView/UICollectionView hack. You can use a single data source for all of your contents. Each section displays its items in a row. CollectionViewShelfLayout supports collection view's header view and footer view similar to table view's tableHeaderView and tableFooterView also sections' header and footer views too."
s.homepage = "https://github.com/pitiphong-p/CollectionViewShelfLayout"
s.screenshots = "https://cocoacontrols-production.s3.amazonaws.com/uploads/control_image/image/9666/CollectionViewShelfLayout_small.png"
s.license = "MIT"
s.author = "Pitiphong Phongpattranont"
s.social_media_url = "http://twitter.com/pitiphong_p"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/pitiphong-p/CollectionViewShelfLayout.git", :tag => s.version }
s.source_files = ["CollectionViewShelfLayout/*.swift"]
s.xcconfig = { 'SWIFT_VERSION' => '5.0' }
end