iOS按照漢語拼音首字母排序

以往對數(shù)組里元素按照首字母音序排序時并添加索引,我們可能會想到利用各種三方庫琅拌,但較為麻煩猜敢。最近發(fā)現(xiàn)可以使用Apple提供的UILocalizedIndexedCollation進行本地化排序奢啥,本文主要完成兩項任務:

  • 完成本地JSON文件解析
  • 利用UILocalizedIndexedCollation進行排序并添加sectionIndexTitles

先來看效果圖:


效果圖.gif
本文使用到的JSON文件部分內(nèi)容如下
{
    "data": [
             {
             "countryName": "安道爾",
             "countryPinyin": "an dao er",
             "phoneCode": "376",
             "countryCode": "AD"
             },
             {
             "countryName": "阿拉伯聯(lián)合酋長國",
             "countryPinyin": "a la bo lian he qiu zhang guo",
             "phoneCode": "971",
             "countryCode": "AE"
             }
           
}

我們將會根據(jù)countryName的首字母進行排序,但是首先我們得先完成本地JSON數(shù)據(jù)的解析袋坑,新建一個Country類,繼承于NSObject:

import Foundation

typealias JSON = [String:Any]

class Country:NSObject {

   @objc var countryName:String!
    var countryPinyin :String!
    var phoneCode     :String!
    var countryCode   :String!

    init(dictionary: JSON) {
        self.countryName   = dictionary["countryName"] as! String
        self.countryPinyin = dictionary["countryPinyin"] as! String
        self.phoneCode     = dictionary["phoneCode"] as! String
        self.countryCode   = dictionary["countryCode"] as! String
    }
}

struct CountryFetcher {
    
    static func getCountries() -> [Country] {
        
        var countries = [Country]()
        
        if let filePath = Bundle.main.path(forResource: "Country", ofType: "json"){
            
            if  let jsonData = try? Data(contentsOf: URL(fileURLWithPath: filePath)){
                
                do{
                    let json = try JSONSerialization.jsonObject(with: jsonData, options:[]) as! JSON
                    
                    if  let dicts = json["data"] as? [JSON] {
                        countries = dicts.map({
                            return Country.init(dictionary: $0)
                        })
                    }
                    
                }catch let error as NSError{
                    print("解析出錯: \(error.localizedDescription)")
                }
            }
            
        }
        return countries
    }
}

新建UILocalizedIndexedCollation Extension文件,創(chuàng)建排序方法:

extension UILocalizedIndexedCollation{
    
    func partitionObjects(array:[AnyObject], collationStringSelector:Selector) -> ([AnyObject], [String]) {
        var unsortedSections = [[AnyObject]]()
        
        //1. Create a array to hold the data for each section
        for _ in self.sectionTitles {
            unsortedSections.append([]) //appending an empty array
        }
        
        //2. Put each objects into a section
        for item in array {
            let index:Int = self.section(for: item, collationStringSelector:collationStringSelector)
            unsortedSections[index].append(item)
        }
        //3. sorting the array of each sections
        var sectionTitles = [String]()
        var sections = [AnyObject]()
        for index in 0 ..< unsortedSections.count { if unsortedSections[index].count > 0 {
            sectionTitles.append(self.sectionTitles[index])
            sections.append(self.sortedArray(from: unsortedSections[index], collationStringSelector: collationStringSelector) as AnyObject)
            }
        }
        return (sections, sectionTitles)
    }
}

新建CountryTableViewController,創(chuàng)建如下變量:

 var countries = [Country]() // country數(shù)組
 var countriesWithSections = [[Country]]() //每個section里是1個country數(shù)組眯勾,所有section里的country數(shù)組的集合
 var sectionTitles = [String]() // 標題數(shù)組枣宫,亦是索引文字數(shù)組
 let collation = UILocalizedIndexedCollation.current()

ViewdidLoad方法里執(zhí)行:

 countries = CountryFetcher.getCountries()
 let(countrArr, titlesArr) = collation.partitionObjects(array: countries,collationStringSelector: #selector(getter: Country.countryName)) 
 countriesWithSections = countryArr as![[Country]]
 sectionTitles = titlesArr

tableView進行設置:

// 高度
 override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 44
    }
    
    // titleForHeaderInSection
 override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        
        return sectionTitles[section]
    }
    
 override func numberOfSections(in tableView: UITableView) -> Int {
        return sectionTitles.count
    }
    
  override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return countriesWithSections[section].count
    }
    
 override func sectionIndexTitles(for tableView: UITableView) -> [String]? {
        return sectionTitles
    }
    
 override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
        let country = countriesWithSections[indexPath.section][indexPath.row]
        cell.textLabel?.text = country.countryName
        
        let phoneCodeLabel = UILabel(frame: CGRect(x: 0, y: 0, width: 80, height: 24))
        phoneCodeLabel.textAlignment = .right
        phoneCodeLabel.textColor = UIColor.lightGray
        phoneCodeLabel.font = UIFont.systemFont(ofSize: 15)
        phoneCodeLabel.text = "+" + country.phoneCode
        cell.accessoryView  = phoneCodeLabel
        return cell
    }

截止當前countryName都是中文字,假設部分countryName是英文吃环,在中英文同時存在的情況下結果又如何呢也颤?留給看此文的你去驗證,將你的驗證結果留在評論區(qū)郁轻。

GitHub工程地址

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末翅娶,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌竭沫,老刑警劉巖厂庇,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異输吏,居然都是意外死亡权旷,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門贯溅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來拄氯,“玉大人,你說我怎么就攤上這事它浅∫氚兀” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵姐霍,是天一觀的道長鄙麦。 經(jīng)常有香客問我,道長镊折,這世上最難降的妖魔是什么胯府? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮恨胚,結果婚禮上骂因,老公的妹妹穿的比我還像新娘。我一直安慰自己赃泡,他們只是感情好寒波,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著升熊,像睡著了一般俄烁。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上级野,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天页屠,我揣著相機與錄音,去河邊找鬼勺阐。 笑死卷中,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的渊抽。 我是一名探鬼主播蟆豫,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼懒闷!你這毒婦竟也來了十减?” 一聲冷哼從身側響起栈幸,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎帮辟,沒想到半個月后速址,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡由驹,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年芍锚,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蔓榄。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡并炮,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出甥郑,到底是詐尸還是另有隱情逃魄,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布澜搅,位于F島的核電站伍俘,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏勉躺。R本人自食惡果不足惜癌瘾,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望赂蕴。 院中可真熱鬧柳弄,春花似錦舶胀、人聲如沸概说。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽糖赔。三九已至,卻和暖如春轩端,著一層夾襖步出監(jiān)牢的瞬間放典,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工基茵, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留奋构,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓拱层,卻偏偏與公主長得像弥臼,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子根灯,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容