-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZCWRACPullRefresh.podspec
More file actions
35 lines (22 loc) · 961 Bytes
/
ZCWRACPullRefresh.podspec
File metadata and controls
35 lines (22 loc) · 961 Bytes
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
Pod::Spec.new do |s|
s.name = "ZCWRACPullRefresh"
s.version = "0.1.3"
s.summary = "A pull refresh control with RAC"
s.description = <<-DESC
A pull refresh control with RAC
guide
* create a ZCWPullRefreshControl view use initWithFrame:
* subscibe pullRefreshState signal
* give a rac command to do refresh
* add it to tableview or scrollview use addToScrollView:
* ! warning , this version has a bug , you must implement scrollViewDidScroll: methods. I'll fix it soon.
DESC
s.homepage = "https://github.com/WilliamZang/ZCWRACPullRefresh"
s.license = 'MIT'
s.author = { "zangcw" => "chengwei.zang.1985@gmail.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/WilliamZang/ZCWRACPullRefresh.git", :tag => "0.1.3" }
s.source_files = 'ZCWTableViewPullRefresh/*.{h,m}'
s.requires_arc = true
s.dependency 'ReactiveCocoa', '~> 2.3'
end