-
Notifications
You must be signed in to change notification settings - Fork 70
/
SCPageViewController.podspec
36 lines (31 loc) · 1.79 KB
/
SCPageViewController.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
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = 'SCPageViewController'
s.version = '2.0.14'
s.platform = :ios
s.ios.deployment_target = '6.0'
s.summary = 'SCPageViewController is a container view controller similar to UIPageViewController which provies more control and is much more customizable'
s.description = <<-DESC
SCPageViewController is a container view controller similar to UIPageViewController but which provies more control, is much more customizable and, arguably, has a better overall design.
It supports the following features:
- Customizable transitions and animations (through layouters and custom easing functions)
- Incremental updates with user defined animations
- Bouncing and realistic physics
- Correct appearance calls, even while interactions are in progres
- Custom layouts and animated layout changes
- Vertical and horizontal layouts
- Pagination
- Content insets
- Completion blocks
- Customizable interaction area and number of touches required
and more..
DESC
s.homepage = 'https://github.com/stefanceriu/SCPageViewController'
s.author = { 'Stefan Ceriu' => '[email protected]' }
s.social_media_url = 'https://twitter.com/stefanceriu'
s.source = { :git => 'https://github.com/stefanceriu/SCPageViewController.git', :tag => "v#{s.version}" }
s.license = { :type => 'MIT License', :file => 'LICENSE' }
s.source_files = 'SCPageViewController/*', 'SCPageViewController/Layouters/*'
s.requires_arc = true
s.frameworks = 'UIKit', 'QuartzCore', 'CoreGraphics', 'Foundation'
s.dependency 'SCScrollView', '~> 1.1'
end