-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathLazyTableView.podspec
More file actions
29 lines (27 loc) · 1.42 KB
/
Copy pathLazyTableView.podspec
File metadata and controls
29 lines (27 loc) · 1.42 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
Pod::Spec.new do |s|
s.name = "LazyTableView"
s.version = "1.4.2"
s.summary = "LazyTableView can be the greatest degree of simplification of the operation of UITableView, support for remote JSON loading."
s.description = <<-DESC
1.Automatically load a remote URL of the JSON data, the analysis
of section also mention, allowing users to obtain higher
efficiency with less code.
2. manually create the local static cell, you can freely control
the section and cell.
3. custom HUD animation when there is no sense of violation and
loading data.
LazyTableView can be the greatest degree of simplification of the
operation of UITableView, support for remote JSON loading
DESC
s.homepage = "https://github.com/sx1989827/LazyTableView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "sx1989827" => "" }
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/sx1989827/LazyTableView.git", :tag => '1.4.2'}
s.source_files = "LazyTableView/LazyTableView/*.{h,m}"
s.resources = "LazyTableView/LazyTableView/img/*.png"
s.requires_arc = true
s.dependency 'MJRefresh'
s.dependency 'AFNetworking',"2.6.3"
s.dependency 'JSONModel'
end