-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathSMSegmentView.podspec
More file actions
28 lines (20 loc) · 900 Bytes
/
Copy pathSMSegmentView.podspec
File metadata and controls
28 lines (20 loc) · 900 Bytes
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
Pod::Spec.new do |s|
s.name = "SMSegmentView"
s.version = "0.0.2"
s.summary = "Custom segmented control for iOS 7 and above"
s.description = <<-DESC
Written in Swift.
Support both images and text.
Support vertically organise segments
More customisible than UISegmentedControl and easier to expand with new style.
DESC
s.homepage = "https://github.com/allenbryan11/SMSegmentView"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = "allenbryan11"
s.platform = :ios, "7.0"
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/allenbryan11/SMSegmentView.git", :branch => "master" }
s.source_files = "SMSegmentViewController/SMSegmentView/*.swift"
s.requires_arc = true
s.frameworks = 'UIKit'
end