forked from xtrinch/MRTableViewCellCountScrollIndicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
65 lines (44 loc) · 2.74 KB
/
README.md
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# MRTableViewCellCountScrollIndicator
[![CI Status](http://img.shields.io/travis/xtrinch/MRTableViewCellCountScrollIndicator.svg?style=flat)](https://travis-ci.org/xtrinch/MRTableViewCellCountScrollIndicator)
[![Version](https://img.shields.io/cocoapods/v/MRTableViewCellCountScrollIndicator.svg?style=flat)](http://cocoapods.org/pods/MRTableViewCellCountScrollIndicator)
[![License](https://img.shields.io/cocoapods/l/MRTableViewCellCountScrollIndicator.svg?style=flat)](http://cocoapods.org/pods/MRTableViewCellCountScrollIndicator)
[![Platform](https://img.shields.io/cocoapods/p/MRTableViewCellCountScrollIndicator.svg?style=flat)](http://cocoapods.org/pods/MRTableViewCellCountScrollIndicator)
Shows a simple UITableView scroll count indicator. Written in Swift 2.2.
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
<img src='https://raw.githubusercontent.com/xTrinch/MRTableViewCellCountScrollIndicator/master/Graphics/screencap.gif' alt='Moving content from under the keyboard in iOS / Swift'>
## Usage
Create a MRTableViewCellCountScrollIndicator class, initialize it with your tableView. There are some variables in the class like color, height, opacity, alpha that you could change, or leave them at default values. Your ViewController remains the delegate and dataSource for the tableView, so all you have to make sure is to set the correct number of items after you fetch them from your API.
For fadeout see example project.
import MRTableViewCellCountScrollIndicator
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
var articles:[Article] = []
var cellCounter:MRTableViewCellCountScrollIndicator?
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
tableView.rowHeight = UITableViewAutomaticDimension
cellCounter = MRTableViewCellCountScrollIndicator(tableView: tableView)
cellCounter!.scrollCountView.mainBackgroundColor = UIColor.blueColor()
cellCounter!.opacity = 0.7
cellCounter!.rightOffset = 0
fetchDataFromApi()
}
func fetchDataFromApi() {
// fetch data
cellCounter!.totalScrollCountNum = articles.count
tableView.reloadData()
}
}
## Installation
MRTableViewCellCountScrollIndicator is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod "MRTableViewCellCountScrollIndicator"
```
## Author
xTrinch, [email protected]
## License
MRTableViewCellCountScrollIndicator is available under the MIT license. See the LICENSE file for more info.