So I am just tryint to get my iAP's to show up on my app so I can work on them (this is my first time). And they dont show up instead the dialogue shows up with no options. I have found that the crux of the problem is this block of code here:
func productsRequest(request: SKProductsRequest!, didReceiveResponse response: SKProductsResponse!) {
println(response)
println(response.products)
/
self.products = response.products as! [SKProduct]
self.request = nil
}This function right here returns an empty array every time with no exceptions, even though I have two iAP's on itunes. Here are some things I have done.
- Uploaded a binary to itunes connect
- Created the two iap's (they are currently in "Ready to submit" phase)
- Have moved the switch under capabilities
- Have a developer account
- Have added the iAP's to the product page
what am i missing?
Also for the host content on apple's servers option this is like if you have an extra downloadable racetrack right? A remove adds iAP wouldnt need that right?