我在名为 favToLoad 的 NSMutableDictionary 中有数组。我正在尝试使用 UITableView 的 indexPath.row 来一一获取数组。
代码 :
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
解决方案
我通过使用 NSMutableArray 而不是 NSMutableDictionary 解决了我的问题