import UIKit class Player { let name: String let image: UIImage init(name: String, image: UIImage) { self.name = name self.image = image } } class MainTableViewController: UITableViewController { private let cellId = "cellId" private let players = [ Player(name: "竹富", image: #imageLiteral(resourceName: "IMG_6427")) ] override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .white tableView.register(MainTableViewCell.self, forCellReuseIdentifier: cellId) setupNavigationBar() } private func setupNavigationBar() { navigationItem.title = "NBA Player" navigationItem.largeTitleDisplayMode = .always navigationController?.navigationBar.prefersLargeTitles = true //navigationの背景色を変更 let appearance = UINavigationBarAppearance() appearance.configureWithDefaultBackground() appearance.backgroundColor = UIColor(white: 0.9, alpha: 1) navigationController?.navigationBar.scrollEdgeAppearance = appearance navigationController?.navigationBar.standardAppearance = appearance } } //MARK - tableViewの設定 extension MainTableViewController { override func numberOfSections(in tableView: UITableView) -> Int { return players.count } override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { return 50 } override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { let label = UILabel() label.text = "Aチーム" label.textAlignment = .center label.backgroundColor = .darkGray label.textColor = .white switch section { case 0: label.text = "Aチーム" case 1: label.text = "Bチーム" case 2: label.text = "Cチーム" default: break } return label } override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return 60 } override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return players[section].count } override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! MainTableViewCell cell.nameLabel.text = players[indexPath.section][indexPath.row] //cell.textLabel?.text = players[indexPath.section][indexPath.row] return cell } }
Xcode初心者です。
上のコードをうつと、
下から約11行にある return players[section].countにType of expression is ambiguous without more contextというエラーがでて、
その下のcell.nameLabel.text = players[indexPath.section][indexPath.row]にValue of type 'Player' has no subscriptsというエラーが出てきます。
解決方法を教えて欲しいです。
players[section].count や players[indexPath.section][indexPath.row] をするためには players が 2 次元配列 (配列の配列) になってる必要がありますが、実際には単なる Player の配列だからでは。
あなたの回答
tips
プレビュー