我想在我的应用内销售产品。我正确收到了我的产品但我无法通过NSNotificationCenter显示它们。 这是我的代码:
- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response {
NSLog(@"Received products results...");
self.products = response.products;
self.request = nil;
NSLog(@"%@", self.products); // I got the products (SKProduct)
[[NSNotificationCenter defaultCenter] postNotificationName:kProductsLoadedNotification object:_products];
}
我也试图显示一个简单的通知,但它也不起作用:
[[NSNotificationCenter defaultCenter] postNotificationName:@"my_notification" object:nil];
我也试过this
你不能帮我解决这个问题吗?