画像を表示するUICollectionView
で新しいプロジェクトを設定しています。私はViewController
とCellViewController
を作成しました。コードCellViewController
でタイプ 'UICollectionViewCell'の値に 'imageView'のメンバーがありません
は次のとおりです。
import UIKit
class ClubCollectionViewCell: UICollectionViewCell {
@IBOutlet weak var imageView: UIImageView!
}
しかしViewController
で、私はそれは私にエラーを与えて画像を設定しています。事前に
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier,
for: indexPath)
// Configure the cell
cell.backgroundColor = UIColor.black
cell.imageView.image = UIImage(named: "pic1")
return cell;
}
おかげ..
エラーは何ですか。 '@ IBOutlet'を' .xib'ファイルに接続しましたか? – dirtydanee
私は取得しているエラーです 'UICollectionViewCell'の値にメンバー 'imageView'がありません私のストーリーボードで新しいクラスClubCollectionViewCellにセルを接続しましたが! –