forked from Amnell/APParallaxHeader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPParallaxHeader.podspec
More file actions
17 lines (15 loc) · 854 Bytes
/
APParallaxHeader.podspec
File metadata and controls
17 lines (15 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'APParallaxHeader'
s.version = '0.1.3'
s.platform = :ios, '5.0'
s.license = 'MIT'
s.summary = 'Add a parallax header view to your table views with one row of code.'
s.homepage = 'https://github.com/apping/APParallaxHeader'
s.author = { 'Mathias Amnell' => 'mathias@apping.se' }
s.source = { :git => 'https://github.com/apping/APParallaxHeader.git', :tag => s.version.to_s }
s.description = 'This category makes it super easy to add a parallax header view to your table views. Other alternatives relies on subclassing of UITableViewController or UITableView. APParallaxHeader uses the Objective-C runtime instead to add the following method to UIScrollView.'
s.frameworks = 'QuartzCore'
s.source_files = 'APParallaxHeader/*.{h,m}'
s.preserve_paths = 'Demo'
s.requires_arc = true
end