-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathSCNavTabBarController.podspec
More file actions
22 lines (19 loc) · 945 Bytes
/
SCNavTabBarController.podspec
File metadata and controls
22 lines (19 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SCNavTabBarController"
s.version = "0.3.0"
s.summary = "SCNavTabBarController demo is like news client control and manager subviewcontroller"
s.description = <<-DESC
Fork from original master branch, and my reversion added features autolayout support
can specify container view, more property to modify apperance.
DESC
s.homepage = "https://github.com/DonYang/SCNavTabBarController"
s.license = { :type => "MIT" }
s.author = { "shicang1990" => "shicang1990@gmail.com" }
s.platform = :ios
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/DonYang/SCNavTabBarController.git", :tag=>s.version.to_s}
s.requires_arc = true
s.source_files = 'SCNavTabBarController/**/*.{h,m}'
s.resources = "SCNavTabBarController/*.bundle"
s.framework = "Foundation", "UIKit"
end