-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathJCNavigationController.podspec
More file actions
46 lines (31 loc) · 2.64 KB
/
JCNavigationController.podspec
File metadata and controls
46 lines (31 loc) · 2.64 KB
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
37
38
39
40
41
42
43
44
45
46
#
# Be sure to run `pod spec lint JCNavigationController.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "JCNavigationController"
s.version = "1.0.8"
s.summary = "JCNavigationConroller是一个可以在不同页面自定义NavigationBar样式,而且互相不影响"
s.description = <<-DESC
支持StroyBoard xib code 不影响原有的导航栏的navigationItem和其他navigationBar的属性,包括设置的barTintColor,backgroundImage等
DESC
s.homepage = "https://github.com/SerilesJam/JCNavigationController"
#s.screenshots = "https://github.com/SerilesJam/JCNavigationController/blob/master/demo.gif"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Jam" => "hxjiamiao@126.com" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "7.0"
s.requires_arc = true
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/SerilesJam/JCNavigationController.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = 'JCNavigationController/*.{h,m}'
#s.resource = 'JCNavigationController/JCNavigationController.bundle'
s.resource = 'JCNavigationController/*.xcassets'
end