Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
自由流水 authored Jan 17, 2018
1 parent 6c8fb12 commit 13e2822
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ toast效果图:

# 使用方法
可以通过CocoaPods导入,支持iOS7及以上。
pod 'SCIndexView'

### 1.x版本
1. 创建SCIndexViewConfiguration对象,这个对象用来控制索引的UI样式;
2. 创建SCIndexView对象,这个对象是索引视图本身,初始化方法必须传入UITableView列表,和SCIndexViewConfiguration对象;
3. 将SCIndexView索引视图添加到UITableView列表视图的父视图之中,再设置索引视图的数据源。
Expand All @@ -26,5 +29,18 @@ indexView.translucentForTableViewInNavigationBar = self.translucent;
indexView.dataSource = indexViewDataSource;
```

### 2.x版本
1. 创建SCIndexViewConfiguration对象,这个对象用来控制索引的UI样式;
2. 设置UITableView对象的 sc_translucentForTableViewInNavigationBar 和 sc_indexViewConfiguration;
3. 再设置UITableView对象的索引数据源。
不用再关心SCIndexView视图本身,直接在UITableView上设置即可。

```
SCIndexViewConfiguration *indexViewConfiguration = [SCIndexViewConfiguration configuration];
tableView.sc_indexViewConfiguration = indexViewConfiguration;
tableView.sc_translucentForTableViewInNavigationBar = YES;
tableView.sc_indexViewDataSource = indexViewDataSource;
```

# 结束
如果大家有什么想法的话,可以向我反馈。如果大家喜欢的话,也可以通过star来鼓励下我,感谢大家捧场。

0 comments on commit 13e2822

Please sign in to comment.