forked from bizz84/MVSelectorScrollView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMVSelectorScrollView.podspec
34 lines (20 loc) · 1.32 KB
/
MVSelectorScrollView.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
34
Pod::Spec.new do |s|
s.name = "MVSelectorScrollView"
s.version = "1.0.0"
s.summary = "Simple scrollable horizontal control, alternative to UISegmentedControl"
s.description = <<-DESC
This project includes a simple Cocoa control that can be used as an alternative for the standard UISegmentedControl provided by UIKit.
The control is made by a simple UIScrollView that can be scrolled horizontally to select amongst a set of NSString values.
The advantage over a traditional UISegmentedControl is that with MVSelectorScrollView it's easy to select up to a dozen of values.
DESC
s.homepage = "https://github.com/bizz84/MVSelectorScrollView"
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { "Andrea Bizzotto" => "[email protected]" }
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/bizz84/MVSelectorScrollView.git", :tag => '1.0.0' }
s.source_files = 'MVSelectorScrollView', 'MVSelectorScrollView/**/*.{h,m}'
s.resources = "MVSelectorScrollView/*.png", "MVSelectorScrollView/*.xib"
s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics'
s.screenshots = ["https://github.com/bizz84/MVSelectorScrollView/raw/master/preview.png"]
s.requires_arc = true
end