IndexesView 一个漂亮的侧边索引
Installation
CaamDau is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'CaamDauIndexes'
pod 'CaamDau/Indexes'
Usage
@IBOutlet weak var tableView: UITableView!
lazy var headers:[String] = {
return ["选", "主"] + CD.atoz(true) + ["#"]
}()
lazy var indexesView: IndexesView = {
return IndexesView()
}()
override func viewDidLoad() {
super.viewDidLoad()
self.view.cd.add(indexesView)
indexesView.snp.makeConstraints {
$0.right.equalToSuperview().offset(10)
$0.centerY.equalTo(tableView)
$0.top.greaterThanOrEqualTo(tableView).offset(20)
}
indexesView.items = headers.map{ IndexesView.Item(title:$0, color:Config.color.txt_1)}
//indexesView.firstIndex = 1
indexesView.selectHandler = { [weak self](item, idx)in
let i = self!.headers.index(of: item.title)!
self?.tableView.scrollToRow(at: IndexPath(row: 0, section: i), at: .top, animated: false)
}
}
@IBAction func click(_ sender: UISegmentedControl) {
switch sender.selectedSegmentIndex {
case 0:
indexesView.hudStyle.style = .bubble
indexesView.hudStyle.alphaMax = 0.3
indexesView.hudStyle.size = CGSize(w: 60, h: 50)
case 1:
indexesView.hudStyle.style = .hud
indexesView.hudStyle.alphaMax = 0.6
indexesView.hudStyle.size = CGSize(w: 80, h: 80)
default:
break
}
}
Author
liucaide, [email protected]
License
CaamDau is available under the MIT license. See the LICENSE file for more info.