Swift4.0之拿走即用車牌查詢TableView列表

本著分享精神来惧,分享一個(gè)工具類的列表,或許你用得到, 需要json文件的評(píng)論心例,秒發(fā)

車牌查詢TableView列表
import Foundation
import UIKit
import SwiftyJSON

class LicensePlateListViewController: UIViewController {
    
    fileprivate var tableView: UITableView!
    
    fileprivate let licenseData: [String: [Any]]? = {
        if let pathURL = Bundle.main.url(forResource: "license_plate", withExtension: "json") {
            do {
                let data = try Data(contentsOf: pathURL)
                let jsonObj = JSON(data: data)
                if jsonObj != JSON.null {
                    var result = [LicensePlate]()
                    for (_, subJson):(String, JSON) in jsonObj {
                        let item = LicensePlate(json: subJson)
                        result.append(item)
                    }
                    let alphas = Array(Set(result.map({ $0.firstChar })))
                    
                    let sortedAlpha = alphas.sorted(by: { $0 < $1 })
                    var mergedResult = [[LicensePlate]]()
                    
                    for alpha in sortedAlpha {
                        let values = result.filter( {$0.firstChar == alpha } )
                        mergedResult.append(values)
                    }
                    return ["alphas":sortedAlpha,"licenses":mergedResult]
                }
            }
            catch {
                print(error.localizedDescription)
            }
        }
        return nil
    }()
    
    fileprivate var cellDescriptors = [[[String: Any]]]()
    
    fileprivate var visibleRowsPerSection = [[Int]]()
    
    override func viewDidLoad() {
        super.viewDidLoad()
        self.title = "車牌查詢"
        self.navigationItem.leftBarButtonItem = UIBarButtonItem(image: UIImage(named: "item_back_white"), style: .done, target: self, action: #selector(backAction(_:)))
        let tableView = UITableView(frame: view.bounds, style: .grouped)
        tableView.delegate = self
        tableView.dataSource = self
        tableView.separatorColor = UIColor(hex: "EEEEEE")
        view.addSubview(tableView)
        self.tableView = tableView
        
        tableView.register(CustomContentCell.self)
        
        loadCellDescriptors()
        
        let vc:UIViewController = UIViewController()
        
    }
    
    
    func loadCellDescriptors() {
        //https://www.appcoda.com.tw/expandable-table-view/
        if let data = licenseData {
            let result = data["licenses"] as! [[LicensePlate]]
            
            var descriptors = [[[String: Any]]]()
            
            for sameAlphaProvinces in result {
                var provinceItem = [[String:Any]]()
                for province in sameAlphaProvinces {
                    var plain = [String: Any]()
                    let cities = province.cities
                    // 配置省份cell
                    plain["value"] = province.province
                    plain["isExpandable"] = true
                    plain["isExpanded"] = false
                    plain["isVisible"] = true
                    plain["additionalRows"] = cities.count
                    plain["isProvince"] = true
                    plain["cellIdentifier"] = "provinceCellID"
                    // 省份加到第一個(gè)
                    provinceItem.append(plain)
                    // 配置城市cell
                    var cityPlain = [String: Any]()
                    for city in cities {
                        cityPlain["value"] = city.code + " " + city.name
                        cityPlain["isExpandable"] = false
                        cityPlain["isExpanded"] = false
                        cityPlain["isVisible"] = false
                        cityPlain["additionalRows"] = 0
                        cityPlain["isProvince"] = false
                        cityPlain["cellIdentifier"] = "licensePlateCellID"
                        // 城市依次往后加
                        provinceItem.append(cityPlain)
                    }
                }
                
                descriptors.append(provinceItem)
                
                cellDescriptors = descriptors
                
                getIndicesOfVisibleRows()
                tableView.reloadData()
            }
        }
    }
    
    func getIndicesOfVisibleRows() {
        visibleRowsPerSection.removeAll()
        
        for currentSectionCells in cellDescriptors {
            var visibleRows = [Int]()
            
            for row in 0...((currentSectionCells as [[String: AnyObject]]).count - 1) {
                if currentSectionCells[row]["isVisible"] as! Bool == true {
                    visibleRows.append(row)
                }
            }
            visibleRowsPerSection.append(visibleRows)
        }
    }
    
    func getCellDescriptorFor(indexPath: IndexPath) -> [String: AnyObject] {
        let indexOfVisibleRow = visibleRowsPerSection[indexPath.section][indexPath.row]
        let cellDescriptor = cellDescriptors[indexPath.section][indexOfVisibleRow] as [String: AnyObject]
        return cellDescriptor
    }
    
    func backAction(_ item: UIBarButtonItem) {
        navigationController?.popViewController(animated: true)
    }
}

extension LicensePlateListViewController: UITableViewDataSource {
    func numberOfSections(in tableView: UITableView) -> Int {
        return cellDescriptors.count
    }
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return visibleRowsPerSection[section].count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell:CustomContentCell = tableView.dequeueReuseableCell(indexPath: indexPath)
        let currentCellDescriptor = getCellDescriptorFor(indexPath: indexPath)
        if let value = currentCellDescriptor["value"] as? String {
            if currentCellDescriptor["isProvince"] as! Bool == true {
                cell.accessoryType = .disclosureIndicator
                cell.textLabel?.font = UIFont.systemFont(ofSize: 16)
            } else {
                cell.accessoryType = .none
                cell.textLabel?.font = UIFont.systemFont(ofSize: 13)
            }
            cell.textLabel?.text = value
        }
        return cell
    }
    
    func sectionIndexTitles(for tableView: UITableView) -> [String]? {
        if let licenseData = licenseData {
            let origin = licenseData["alphas"] as? [String]
            let new = origin?.insert(separator: "            ")
            return new
        }
        return nil
    }
}

extension LicensePlateListViewController: UITableViewDelegate {
    
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let indexOfTappedRow = visibleRowsPerSection[indexPath.section][indexPath.row]
        if cellDescriptors[indexPath.section][indexOfTappedRow]["isExpandable"] as! Bool == true {
            var shouldExpandAndShowSubRows = false
            if cellDescriptors[indexPath.section][indexOfTappedRow]["isExpanded"] as! Bool == false {
                shouldExpandAndShowSubRows = true
            }
            
            cellDescriptors[indexPath.section][indexOfTappedRow]["isExpanded"] = shouldExpandAndShowSubRows
            
            for i in (indexOfTappedRow + 1)...(indexOfTappedRow + (cellDescriptors[indexPath.section][indexOfTappedRow]["additionalRows"] as! Int)) {
                cellDescriptors[indexPath.section][i]["isVisible"] = shouldExpandAndShowSubRows
            }
        } else {
            var indexOfParentCell: Int!
            for i in stride(from: indexOfTappedRow - 1, through: 0, by: -1) {
                if cellDescriptors[indexPath.section][i]["isExpandable"] as! Bool == true {
                    indexOfParentCell = i
                    break
                }
            }
            cellDescriptors[indexPath.section][indexOfParentCell]["isExpanded"] = false
            
            for i in (indexOfParentCell + 1)...(indexOfParentCell + (cellDescriptors[indexPath.section][indexOfParentCell]["additionalRows"] as! Int)) {
                cellDescriptors[indexPath.section][i]["isVisible"] = false
            }
        }
        
        getIndicesOfVisibleRows()
        tableView.reloadSections(IndexSet(integer: indexPath.section), with: .fade)
        
        tableView.deselectRow(at: indexPath, animated: true)
    }
    
    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        if let licenseData = licenseData {
            return licenseData["alphas"]?[section] as? String
        }
        return ""
    }
    
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        
        let currentCellDescriptor = getCellDescriptorFor(indexPath: indexPath)
        
        switch currentCellDescriptor["cellIdentifier"] as! String {
        case "provinceCellID":
            return 60
        default:
            return 46
        }
    }
    
    func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        let header = view as? UITableViewHeaderFooterView
        header?.textLabel?.textColor = UIColor(hex: "09BB07")
    }
    
    func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return 30
    }
    
    func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
        return 0.01
    }
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末宵凌,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子止后,更是在濱河造成了極大的恐慌瞎惫,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件译株,死亡現(xiàn)場離奇詭異瓜喇,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)歉糜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門欠橘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人现恼,你說我怎么就攤上這事肃续。” “怎么了叉袍?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵始锚,是天一觀的道長。 經(jīng)常有香客問我喳逛,道長瞧捌,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任润文,我火速辦了婚禮姐呐,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘典蝌。我一直安慰自己曙砂,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布骏掀。 她就那樣靜靜地躺著鸠澈,像睡著了一般柱告。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上笑陈,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天际度,我揣著相機(jī)與錄音,去河邊找鬼涵妥。 笑死乖菱,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蓬网。 我是一名探鬼主播块请,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼拳缠!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起贸弥,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤窟坐,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后绵疲,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體哲鸳,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年盔憨,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了徙菠。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡郁岩,死狀恐怖婿奔,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情问慎,我是刑警寧澤萍摊,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站如叼,受9級(jí)特大地震影響冰木,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜笼恰,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一踊沸、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧社证,春花似錦逼龟、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽肥哎。三九已至,卻和暖如春疾渣,著一層夾襖步出監(jiān)牢的瞬間篡诽,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國打工榴捡, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留杈女,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓吊圾,卻偏偏與公主長得像达椰,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子项乒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

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