私は自分のアプリケーションをデバッグしようとしていますが、Xcodeで実行するとクラッシュします。-[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:viewCategory:]
これはcellForItemAtIndexPath
で発生します。デバッグ、私はアプリをインストールし、それが正常に動作するXcodeなしで実行する場合。デバッグ中にUICollectionViewCellをデキューするとアプリケーションがクラッシュする
これは私のコードです:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
FFSIncidentCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
// Configure the cell
...
}
問題を再現できるようなものを提供できない場合は、そのことについて何も言いません。あなたはコードがこのように動作すると言います。証明する。 – matt
あなたのcellForItemAtIndexPath実装を表示することはできますか? – Joshua
これは私のコードです... - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {FFSIncidentCell *細胞= [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath]。 //セルを設定する – SeanT