-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBUKPickerView.podspec
More file actions
36 lines (30 loc) · 1.66 KB
/
BUKPickerView.podspec
File metadata and controls
36 lines (30 loc) · 1.66 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
#
# Be sure to run `pod lib lint BUKPickerView.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "BUKPickerView"
s.version = "1.0.3"
s.summary = "Data picker using UITableViews, allow multi level selection and multi selection."
s.description = <<-DESC
BUKPickerView is used for multi level data selection. Using UITableView to display each level's data,
and UITableViewCell for each item. You can set the delegate to your own class, and implement the delegate
methods for any situation.
But I think delegate is quite flexible for simple data selection, I also provide a BUKPickViewModel class.
BUKPickerViewModel's instance can directly be used as BUKPickerView's delegate, and providing ways for customize.
I wish the BUKPickerViewModel can satisfy most of your needs, or you need to write your own delegate or just
open some issues in the github.
DESC
s.homepage = "https://github.com/iException/BUKPickerView"
s.license = 'MIT'
s.author = { "hyice" => "hy_ice719@163.com" }
s.source = { :git => "https://github.com/iException/BUKPickerView.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/*'
s.dependency 'BUKDynamicPopView'
end