forked from MoZhouqi/KMNavigationBarTransition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKMNavigationBarTransition.podspec
31 lines (19 loc) · 1.42 KB
/
KMNavigationBarTransition.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
Pod::Spec.new do |s|
s.name = "KMNavigationBarTransition"
s.version = "0.0.4"
s.summary = "A drop-in universal library makes transition animations smooth between different navigation bar styles while pushing or popping."
s.description = <<-DESC
A drop-in universal library makes transition animations smooth between different navigation bar styles while pushing or popping a view controller. And you don't need to write any line of code for it, it all happens automatically.
The library can "capture" the background state of the navigation bar in the disappeared view controller. So what you only need to care about is the background state of the navigation bar in the *current* view controller, without handling the various background states while pushing or popping.
DESC
s.homepage = "https://github.com/MoZhouqi/KMNavigationBarTransition"
s.screenshots = "https://raw.githubusercontent.com/MoZhouqi/KMNavigationBarTransition/master/Screenshots/Now2.gif"
s.license = "MIT"
s.author = { "Zhouqi Mo" => "[email protected]" }
s.social_media_url = "https://twitter.com/MoZhouqi"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/MoZhouqi/KMNavigationBarTransition.git", :tag => s.version }
s.source_files = "KMNavigationBarTransition/*.{h,m}"
s.frameworks = "UIKit"
s.requires_arc = true
end