Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 918 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 918 Bytes

SJCTableIndex

类似于微信通讯录的UITableView的索引

效果图:

https://cdn.yehwang.com/image/return_apply/20201224/859c9fd9d37e8390c77c49e37b3ce856.jpg

# ## Usage An example:
//自定义索引
        UITableViewIndexConfig *config = [UITableViewIndexConfig new];
        config.selectedBgColor = themPinkColor;
        config.selectedTextColor = [UIColor whiteColor];
        config.normalTextColor = ThemeBlack2Color;
        config.indicateViewBgColor = ThemeBlack2Color;
        config.indexViewItemSpace = 3;
        config.normalTextFont = PoppinsMedium(10);
        config.dynamicSwitch = NO;
        yourTableview.sjc_configuration = config;
        yourTableview.sjc_indexArray = @[@"A",@"B",...];