1

クラス割り当てのコレクション ビュー セルに Twitter 情報を入力しようとしていますが、そうしようとするたびに、このエラーでアプリがクラッシュします:
Thread 6: EXC_BAD_INSTRUCTION (code=EXC_1386_INVOP)
と、デバッグ ウィンドウに表示されるこのステートメント:
-[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance 0xa5744b0
このエラーを修正するには、どのような解決策を使用できますか?
ここで私のプロジェクト全体を表示するには、プロジェクト全体へのドロップボックス リンクを使用します。

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
  // here I am creating my cell for the custom View
  CustomCollectionCellView *cellCollect = [theCollectionView dequeueReusableCellWithReuseIdentifier:@"customCell" forIndexPath:indexPath];
  if (cellCollect != nil)
 {
    NSDictionary *userTweetDictionary = [usertwitterfeed objectAtIndex:indexPath.row];
    if (userTweetDictionary != nil)
    {
        cellCollect.userNameLabel.text = (NSString *)[userTweetDictionary objectForKey:@"screen_name"];
        //cellCollect.dateLabel.text = (NSString *)[tweetDictionary objectForKey:@"created_at"];
    }
    return cellCollect;
  }

  return nil;
}
4

1 に答える 1