gpt4 book ai didi

ios - 类型 skproduct 的无效转换类型 nsmutablearray - ios

转载 作者:行者123 更新时间:2023-11-28 22:39:23 24 4
gpt4 key购买 nike

我收到“无效的转换类型 nsmutablearray 以键入 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];

......
}

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

最佳答案

你试过吗

SKProduct *product = (SKProduct *)[_products objectAtIndex:indexPath.row];

关于ios - 类型 skproduct 的无效转换类型 nsmutablearray - ios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14986929/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com