favToLoad という名前の NSMutableDictionary に配列があります。UITableView の indexPath.row を使用して配列を 1 つずつ取得しようとしています。
コード :
NSArray* fav = [[NSArray alloc] init];
NSLog(@"IndexPath = %d", indexPath.row);
fav = [favToLoad objectAtIndex:indexPath.row];
NSLog(@"Fav = %@", fav);
エラー:
[NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance
解決
NSMutableDictionary の代わりに NSMutableArray を使用して問題を解決しました