iOS应用内购买。如何展示产品?

时间:2016-07-07 09:40:07

标签: ios objective-c in-app-purchase nsnotificationcenter

我想在我的应用内销售产品。我正确收到了我的产品但我无法通过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

你不能帮我解决这个问题吗?

0 个答案:

没有答案