Хотите индексированный просмотр таблицы со ссылкой на исходный массив

В iOS/Swift я создал индексированный "клиент" UITableView на основе свойства clientName в моем классе Client. Я создал словарь с разделами от А до Я. Индексированное представление таблицы прекрасно работает. Тем не менее, я пытаюсь найти способ определить, какая строка находится в исходном исходном массиве, когда пользователь выбирает строку. Я думал о создании некоторого типа массива перекрестных ссылок, за исключением того, что словарь в конечном итоге сортируется в соответствии с разделами, поэтому я не знаю, какой комбинированный раздел / строка соответствует исходной записи массива. Есть ли общий подход к решению этой проблемы?

В попытке уточнить...

class Client {
    var clientId             : Int!
    var firstName            : String!
    var lastName             : String!
    var email                : String!
    var phone                : String!
    ...

    init() {

    }
}

var clients: [Client] = []

// clients array loaded from web service
...

// Create dictionary to be source for indexed tableview
func createClientDict() {
    clientDict          = [String: [String]]()
    clientSectionTitles = [String]()

    var clientNames:[String] = []
    for i in 0..<clients.count {
        let client = clients[i]

        let clientName = "\(client.lastName), \(client.firstName)"
        clientNames.append(clientName)
    }

    for name in clientNames {
        var client: Client  = Client()

        // Get the first letter of the name and build the dictionary
        let clientKey = name.substringToIndex(name.startIndex.advancedBy(1))
        if var clientValues = clientDict[clientKey] {
            clientValues.append(name)
            clientDict[clientKey] = clientValues
        } else {
            clientDict[clientKey] = [name]
        }
    }

    // Get the section titles from the dictionary's keys and sort them in ascending order
    clientSectionTitles = [String](clientDict.keys)
    clientSectionTitles = clientSectionTitles.sort { $0 < $1 }
}

Теперь, когда пользователь нажимает строку в табличном представлении, я могу получить раздел и строку (indexPath). Однако как определить, какая строка в массиве клиентов совпадает, если предположить, что могут быть повторяющиеся имена? Есть ли способ создать перекрестную ссылку на индексированный раздел / строку, сопоставленный со строкой в ​​исходном массиве на лету? Я собирался попытаться сделать это при создании словаря, за исключением того, что словарь сортируется после, так что ничего не будет совпадать. Может мне стоит как-то включить исходный номер строки в / со словарем??

Вот код таблицы:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! ClientCell

    let clientKey = clientSectionTitles[indexPath.section]
    if let clientValues = clientDict[clientKey] {
        cell.clientName.text = clientValues[indexPath.row]
    }

    return cell
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return clientSectionTitles.count
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    let clientKey = clientSectionTitles[section]
    if let clientValues = clientDict[clientKey] {
        return clientValues.count
    }

    return 0
}

func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return clientSectionTitles[section]
}

func sectionIndexTitlesForTableView(tableView: UITableView) -> [String]? {
    return clientIndexTitles
}

func tableView(tableView: UITableView, sectionForSectionIndexTitle title: String, atIndex index: Int) -> Int {

    guard let index = clientSectionTitles.indexOf(title) else {
        return -1
    }

    return index
}

func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return 20
}

func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
    let headerView   = view as! UITableViewHeaderFooterView

    headerView.contentView.backgroundColor = UIColor ( red: 0.0, green: 0.3294, blue: 0.6392, alpha: 1.0 )
    headerView.textLabel?.textColor = UIColor.greenColor()
    headerView.textLabel?.font = UIFont(name: "Noteworthy-bold", size: 15.0)
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    selectedIndex = indexPath

    // In the following prepare for segue, I need to somehow use the selected indexpath to find the correct entry
    // in the clients array and pass it along.

    performSegueWithIdentifier("clientDetailSegue", sender: self)
}

1 ответ

Решение

Я понял. Я не осознавал (пока не попробовал), что вы можете вкладывать в словарь массив любого класса. Когда я изменил свой словарь, чтобы мой массив клиентов был вложен в него, все было решено. Я изменил свою функцию, как показано ниже.

func createClientDict() {
    // Declared for view controller. Re-initialized here.
    clientDict          = [String: [Client]]()
    clientSectionTitles = [String]()

    clients.sortInPlace ({ $0.lastName < $1.lastName })

    for c in clients {
        let clientName = "\(c.lastName), \(c.firstName)"

        // Get the first letter of the name and build the dictionary
        let clientKey = clientName!.substringToIndex(clientName!.startIndex.advancedBy(1))
        if var clientValues = clientDict[clientKey] {
            clientValues.append(c)
            clientDict[clientKey] = clientValues
        } else {
            clientDict[clientKey] = [c]
        }
    }

    // Get the section titles from the dictionary's keys and sort them in ascending order
    clientSectionTitles = [String](clientDict.keys)
    clientSectionTitles = clientSectionTitles.sort { $0 < $1 }
}

Тем не менее, эта строка была ключом к решению:

let clientDict = [String: [Client]]()
Другие вопросы по тегам