Skip to content
This repository was archived by the owner on Jul 1, 2020. It is now read-only.

Commit ce68add

Browse files
Release 0.8.0
1 parent 13c00c7 commit ce68add

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
language: objective-c
2-
osx_image: xcode8.3
1+
language: swift
2+
osx_image: xcode9.1
33
branches:
44
only:
55
- master

PullToRefreshKit.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'PullToRefreshKit'
11-
s.version = '0.7.0'
12-
s.summary = 'A refresh library written with pure Swift 3'
11+
s.version = '0.8.0'
12+
s.summary = 'A refresh library written with pure Swift 4'
1313
s.description = <<-DESC
14-
This is a pull to refresh library written by pure Swift 3. Using it you can add pull to refresh,pull to load more,pull left/right to view details within one line. Besides,it is quite easy to write a custom refresh view when using this lib.
14+
This is a pull to refresh library written by pure Swift 4. Using it you can add pull to refresh,pull to load more,pull left/right to view details within one line. Besides,it is quite easy to write a custom refresh view when using this lib.
1515
DESC
1616

1717
s.homepage = 'https://github.com/LeoMobileDeveloper/PullToRefreshKit'

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,12 @@ self.tableView.configRefreshHeader(with: header) { [weak self] in
181181

182182
You just need to write a `UIView` sub class,and make it conforms to these protocols
183183

184-
- RefreshableHeader
185-
- RefreshableFooter
186-
- RefreshableLeftRight
184+
- `RefreshableHeader`
185+
- `RefreshableFooter`
186+
- `RefreshableLeftRight`
187187

188188
For exmaple,to create a custom header
189+
189190
```
190191
//Distance from top when in refreshing state
191192
func heightForRefreshingState()->CGFloat

0 commit comments

Comments
 (0)