在UITableView中使用CustomStringConvertible

时间:2017-07-02 12:56:29

标签: swift uitableview customstringconvertible

我已宣布以下内容:

class Song: CustomStringConvertible {
    let title: String
    let artist: String

    init(title: String, artist: String) {
        self.title = title
        self.artist = artist
    }

    var description: String {
        return "\(title) \(artist)"
    }
}

var songs = [
    Song(title: "Song Title 3", artist: "Song Author 3"),
    Song(title: "Song Title 2", artist: "Song Author 2"),
    Song(title: "Song Title 1", artist: "Song Author 1")
]

我想将此信息输入UITableView,特别是tableView:cellForRowAtIndexPath:

如:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    var cell : LibrarySongTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Library Cell") as! LibrarySongTableViewCell

    cell.titleLabel = //the song title from the CustomStringConvertible[indexPath.row]
    cell.artistLabel = //the author title from the CustomStringConvertible[indexPath.row]
}

我该怎么做?我无法理解。

非常感谢!

2 个答案:

答案 0 :(得分:0)

我认为您可能会将CustomStringConvertible与其他一些设计模式混为一谈。首先,回答:

// You have some container class with your tableView methods
class YourTableViewControllerClass: UIViewController {

    // You should probably maintain your songs array in here, making it global is a little risky

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
    {
        var cell : LibrarySongTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Library Cell") as! LibrarySongTableViewCell

        // Get the song at the row
        let cellSong = songs[indexPath.row]

        // Use the song
        cell.titleLabel.text = cellSong.title
        cell.artistLabel.text = cellSong.artist
    }
}

由于单元格的标题/艺术家已经是公共字符串,您可以根据需要使用它们。 CustomStringConvertible将允许您将实际对象本身用作String。因此,在您的情况下,您可以拥有song并致电song.description并打印出#34;标题艺术家"。但是,如果您想要使用歌曲titleartist,则应该拨打song.titlesong.artistHere's the documentation on that protocol.

另外,正如我上面所写,尝试将songs数组移动到ViewController中。也许可以考虑使用struct而不是class来代替Song类型。

答案 1 :(得分:0)

首先,您的Controller必须实现UITableViewDataSource。 然后,

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    var cell : LibrarySongTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Library Cell") as! LibrarySongTableViewCell
    cell.titleLabel?.text = songs[indexPath.row].title
    cell.artistLabel?.text =songs[indexPath.row].artiste
}