swiftでiOSのアプリを開発しています。
ビルドするとクラッシュしてしまいます。
UICollectionViewのCellをxibで設定したいのですがエラーになります。
ストーリーボードでのCustomClassやidetifierの設定はできていると思います。
また、Build PhasesのCopy Bundle Resources内にxibも入っています。
エラー内容
reason: 'Could not load NIB in bundle: 'NSBundle
エラー箇所
swift
1 override func viewDidLoad() { 2 super.viewDidLoad() 3 // Do any additional setup after loading the view. 4 5 configureCollectionView() 6 7 8 let nib = UINib(nibName: "CustomCell", bundle: nil) 9 collectionView.register(nib, forCellWithReuseIdentifier: "CustomCell") 10 } 11 12 13extension MainViewController: UICollectionViewDataSource { 14 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 15 16 let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CustomCell", for: indexPath) as! CustomCollectionViewCell 17 18 return cell 19 } 20}
エラーの解消方法についてご教授いただけたら幸いです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/18 04:10