2
0

Pearl API update.

This commit is contained in:
Maarten Billemont
2018-10-15 18:09:46 -04:00
parent 78956beb08
commit 554c0129a2
5 changed files with 9 additions and 9 deletions

View File

@@ -102,9 +102,9 @@ PearlEnum( MPDevelopmentFuelConsumption,
SKProduct *product = content;
MPStoreProductCell *cell;
if ([product.productIdentifier isEqualToString:MPProductFuel])
cell = [MPStoreFuelProductCell dequeueCellFromTableView:tableView indexPath:indexPath];
cell = [MPStoreFuelProductCell dequeueFromTableView:tableView indexPath:indexPath];
else
cell = [MPStoreProductCell dequeueCellFromTableView:tableView indexPath:indexPath];
cell = [MPStoreProductCell dequeueFromTableView:tableView indexPath:indexPath];
[cell updateWithProduct:product transaction:self.transactions[product.productIdentifier]];
return cell;