这是我第一次实施应用内购买,我正在使用位于此处的教程:Ray Wenderlich
现在我确信这很简单,但我在解决问题时遇到了问题,所以我想我会在这里问所有的大师。
编译器说 _products 是使用未声明的标识符
- (void)productPurchased:(NSNotification *)notification {
NSString * productIdentifier = notification.object;
[_products enumerateObjectsUsingBlock:^(SKProduct * product, NSUInteger idx, BOOL *stop) {
if ([product.productIdentifier isEqualToString:productIdentifier]) {
*stop = YES;
}
}];
}