[iOS]一行程式碼給中文陣列新增索引
阿新 • • 發佈:2018-11-09
/** * 將原資料以及存放索引的空陣列 傳參 返回整理後的陣列 * 已用分類封裝,直接引入標頭檔案 使用方法即可 * * https://github.com/KKKKaras/JY_SectionDemo */ #import "JYTableViewController.h" #import "ChineseString.h" #import "NSObject+Index.h" @interface JYTableViewController () { NSMutableArray * _listArray; //源資料 NSMutableArray *_AbcSort; //排序整理後的陣列 NSMutableArray *_sectionHeadsKeys;//存放索引的陣列 } @end @implementation JYTableViewController - (void)viewDidLoad { [super viewDidLoad]; _AbcSort=[[NSMutableArray alloc]init]; _sectionHeadsKeys=[[NSMutableArray alloc]init]; _listArray = [[NSMutableArray alloc]initWithObjects:@"白居易",@"柳驚濤",@"莫雨",@"王遺風",@"唐大俠",@"李白",@"杜甫",nil]; //獲取資料 _AbcSort = [ self getChineseStringArr : _listArray andSck:_sectionHeadsKeys ]; }
https://github.com/KKKKaras/JY_SectionDemo