アプリ内購入を実装するのはこれが初めてで、ここにあるチュートリアルを使用しています: 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;
}
}];
}