-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathWMZTreeView.podspec
More file actions
22 lines (20 loc) · 994 Bytes
/
WMZTreeView.podspec
File metadata and controls
22 lines (20 loc) · 994 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 = "WMZTreeView"
s.version = "1.1.1"
s.platform = :ios, "8.0"
s.requires_arc = true
s.license = "Copyright (c) 2019年 WMZ. All rights reserved."
s.summary = "类似前端elementUI的树形控件,可自定义节点内容,支持无限极节点,可拖拽增删节点等待,非递归实现
"
s.description = <<-DESC
可自定义节点内容,支持无限极节点,可拖拽增删节点等待,非递归实现
DESC
s.homepage = "https://github.com/wwmz/WMZTreeView"
s.license = "MIT"
s.author = { "wmz" => "925457662@qq.com" }
s.source = { :git => "https://github.com/wwmz/WMZTreeView.git", :tag => s.version.to_s }
s.source_files = "WMZTreeView/WMZTreeView/**/*.{h,m}"
s.resources = "WMZTreeView/WMZTreeView/WMZTreeView.bundle"
s.framework = 'UIKit'
s.user_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }
end