TableViewの各セルに異なる画像を貼り付ける方法
XcodeでIPhoneのIOS用アプリの開発をしていたのですが、リストを作る際にそれぞれのセルに別の画像を貼り付けるところで詰まってしまいました。
全てのセルに同一の画像を貼り付けるのは
cell.imageView?.image = UIImage(named: "画像のURL")
で出来たのですが、違う画像を設定する方法がわかりません。
どなたか教えていただけると幸いです。
作っていたコードは以下の通りです。
import UIKit
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
var array = ["1","2","3"]
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return array.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.imageView?.image = UIImage(named: "画像のURL")
cell.textLabel!.font = UIFont(name: "Arial", size: 20)
cell.textLabel!.text = array[indexPath.row]
return cell
}- リスト
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 75
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/18 11:44