So I am building an iPhone application with in app purchasing, and I'm trying to test it. I think i have followed all of the right instructions:
- Create unique App ID
- Create app using the ID in iTunes Connect
- Add non-consumable purchase item to it (screenshot attached)
- Create provisioning profile with App ID
- Add provisioning profile to XCode 4.2
- Change Bundle Identifier in XCode project to the unique app ID
- Use the correct product identifier in my request (see code below)
SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers: [NSSet setWithObject:@"com.xxxxxx.xxxxxx.testapp1"]];
request.delegate = self;
[request start];
But my productsRequest method is coming back empty. What am I doing wrong?