私は、以下のような辞書を作成しDictionary in Swiftの使い方は?
let bookList = [
["title" : "Harry Potter",
"author" : "Joan K. Rowling"
"image" : image // UIImage is added.
],
["title" : "Twilight",
"author" : " Stephenie Meyer",
"image" : image
],
["title" : "The Lord of the Rings",
"author" : "J. R. R. Tolkien",
"image" : image]
と私は、この本のリストを使用してのtableViewをしたいのですが。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "listCell") as? ListCell else { return UITableViewCell() }
let book = bookList[indexPath.row]
cell.configureCell(title: book.???, author: ???, bookImage: ???)
return cell
}
セルを構成するために辞書の値とキーはどのように使用しますか?
偉大な心は確かに似 – vadian
と思います。私たちの2人がそれを言うときに考える価値があるアイデアであることは、OPにもっと説得力があります。 – vacawama