i start the product request already in a operation block
NSOperationQueue * queue = [[NSOperationQueue alloc] init];
[queue addOperationWithBlock:^{
SKProductsRequest * request= [[SKProductsRequest alloc] initWithProductIdentifiers: selectedSKIdentifiers];
request.delegate = self;
[request start];
}];
so i would like to use some synchronous version, like when downloading data
NSData * data = [[NSData alloc] initWithContentsOfURL:url];
or parsing XML is also synchronous
NSXMLParser * parser = [[NSXMLParser alloc] initWithData:xmlData];
[parser setDelegate:self];
[parser parse];
[parser release];
Is there a way for to do the SKProductsRequest synchronous
The apple documentation luck on further info on this topic at this day
i found a way how to make any method synchronous :
Make sure to invoke!!!!!!!!!!!!!!!!!
In the delegate(s) then.