前提・実現したいこと
CollectionViewCellでnibを使って配列通りにimageとtextを並べて表示したい。
nibにimageView・label・buttonを配置して、スタティックなコードのときは正常に動作しますが、
変数に置き換えてビルドするとimageViewとLabelの両方で下記のエラーメッセージが出ます。
検索すると接続に問題がある時に出るエラーのようですが、接続は確認済みです。
エラーメッセージ
Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)
該当のソースコード
ViewController.swift
import UIKit class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate { // 画像名の配列 let photoNames:Array = ["bird", "moeru", "plastic", "bird", "moeru", "plastic", "bird", "moeru", "plastic", "bird", "moeru", "plastic", "bird", "moeru", "plastic", "bird", "moeru", "plastic", "bird", "moeru"] let indexPath = IndexPath() @IBOutlet var collectionView: UICollectionView!{ didSet { let nib = UINib(nibName: "customCollectionViewCell", bundle: nil) //register()の引数に渡す定数nibを定義 collectionView.register(nib, forCellWithReuseIdentifier: "customCollectionViewCell") } } override func viewDidLoad() { super.viewDidLoad() //セルのレイアウト設定 let layout = UICollectionViewFlowLayout() let margin:CGFloat = 10 let cellCount:Int = 3 //セルの1行の個数 let cellSize:CGFloat = (self.view.bounds.width - margin) / CGFloat(cellCount) - margin //セルの横幅取得 layout.sectionInset = UIEdgeInsets(top: margin, left: margin, bottom: margin, right: margin) //Viewからの余白 layout.minimumInteritemSpacing = 1 //セル同士の水平(ヨコ)の最小距離 layout.minimumLineSpacing = margin //セルの垂直(タテ)の最小行間 layout.itemSize = CGSize(width: cellSize, height: cellSize*4/3) collectionView.collectionViewLayout = layout } //セクション数 func numberOfSections(in collectionView: UICollectionView) -> Int { return 1 } //セルの数 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return photoNames.count } //セルの中身を指定 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let testCell = collectionView.dequeueReusableCell(withReuseIdentifier: "CustomCollectionViewCell", for: indexPath) return testCell } }
CustomCollectionViewCell.swift
import UIKit class CustomCollectionViewCell: UICollectionViewCell { // サムネイル画像の名前 let photoNames:Array<Any> = [] let indexPath = IndexPath() @IBOutlet var cImageView: UIImageView! @IBOutlet var nameLabel: UILabel! override func awakeFromNib() { super.awakeFromNib() //正常に動作する静的コード //cImageView.image = UIImage(named: "bird") //nameLabel.text = "あおいとり" //エラーが表示される部分(下の2行) cImageView.image = UIImage(named: photoNames[indexPath.row] as! String ) nameLabel.text = (photoNames[indexPath.row] as! String) } @IBAction func fadeButton(_ sender: Any) { //withDurationでフェードアウトする時間を指定、delayで開始時間を遅延させる UIView.animate(withDuration: 10.0, delay: 0.5, options: .curveEaseOut, animations: { self.cImageView.alpha = 0.0 }, completion: nil) UIView.animate(withDuration: 10.0, delay: 0.5, options: .curveEaseOut, animations: { self.nameLabel.alpha = 0.0 }, completion: nil) } }
試したこと
接続の確認、スタティックでの動作確認、xibファイルでのindexPath取得方法の検索
補足情報(FW/ツールのバージョンなど)
使用しているツール:Xcode Version 11.6
ここにより詳細な情報を記載してください。
customCollectionViewCell.swiftのindexpath取得の書き方に問題があるような気がします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/20 14:59