0

我收到“invalid cast type nsmutablearray to type skproduct”错误..当我尝试将产品添加到我的 uitableview 时..这是我正在使用的代码...

在里面

SKProduct *product1 = [[InAppPurchaseManager sharedInAppManager] getLevelUpgradeProduct];
        SKProduct *product2 = [[InAppPurchaseManager sharedInAppManager] getPlayerUpgradeOne];
        SKProduct *product3 = [[InAppPurchaseManager sharedInAppManager] getPlayerUpgradeTwo];

        _products = [[[NSMutableArray alloc] initWithObjects:product1, product2, product3, nil] autorelease];





- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
......
        SKProduct *product = (SKProduct*) _products[indexPath.row]; // error 
        cell.textLabel.text = product.localizedTitle;
        [_priceFormatter setLocale:product.priceLocale];
        cell.detailTextLabel.text = [_priceFormatter stringFromNumber:product.price];

......
}

我的错误是什么?谢谢..

4

2 回答 2

1

你有没有尝试过

SKProduct *product = (SKProduct *)[_products objectAtIndex:indexPath.row];
于 2013-02-20T18:19:47.513 回答
1

虽然我自己无法复制它,但我可以推断编译器认为您正在尝试强制转换_products,而不是您从_products. 将整个内容包装在一组括号中,以便编译器知道将表达式作为一个整体进行评估。

SKProduct *product = (SKProduct*)(_products[indexPath.row]);
于 2013-02-20T18:26:21.843 回答