-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathMcPicker.podspec
More file actions
21 lines (17 loc) · 1.19 KB
/
McPicker.podspec
File metadata and controls
21 lines (17 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'McPicker'
s.version = '3.0.0'
s.summary = 'McPicker is a customizable, closure driven UIPickerView drop-in solution with animations that is rotation ready.'
s.swift_version = '5.2'
s.description = <<-DESC
McPicker is a UIPickerView drop-in solution with animations that is rotation ready. The more string arrays you pass, the more picker components you'll get. You can set custom label or use the defaults. McPicker can be presented as a Popover on iPhone or iPad using showAsPopover, as an inputView using McTextField or use the default slide up and down style show.
showAsPopover can be used to display from a UIView or UIBarButtonItem. showAsPopover will always be presented as a Popover, even when used on an iPhone.
DESC
s.homepage = 'https://github.com/kmcgill88/McPicker-iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kevin McGill' => 'kevin@mcgilldevtech.com' }
s.source = { :git => 'https://github.com/kmcgill88/McPicker-iOS.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'McPicker/Classes/**/*'
s.frameworks = 'UIKit'
end