-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathABCustomUINavigationController.podspec
33 lines (22 loc) · 1.44 KB
/
ABCustomUINavigationController.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
Pod::Spec.new do |s|
s.name = "ABCustomUINavigationController"
s.version = "1.2.2"
s.summary = "Custom UINavigationController. SquaresFlips and Cube effects"
s.description = <<-DESC
Subclass of UINavigationController that overwrite push and pop methods to create new transitions effects. Currently it has been implemented two transition animations:
SquaresFlip
The screen is split in squares and each one rotates until showing the new controller. It has two animation variation: Randomly and Horizontally
Cube effect
The views are shown in differents sides of a cube. It has two animation variation: Horizontal and Vertical
Pixelate
The screen is split in pixels and randomly change to show the nex screen. It has two animation variation: Horizontal and Vertical
DESC
s.homepage = "https://github.com/andresbrun/ABCustomUINavigationController"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Andres Brun" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/andresbrun/ABCustomUINavigationController.git", :tag => s.version }
s.source_files = 'CustomUINavigationController/**/*.{h,m}'
s.frameworks = 'QuartzCore', 'CoreGraphics'
s.requires_arc = true
end