appstore-approval
Should I resubmit the binary after replying to a metadata rejection?
Ok guys, The answer was leaving it without submitting it again. I have received now a message from the store that they received the reply and will continue the review process of the app. The current status of my app is In Review. Hope this will help others in case someone faced such issues in … Read more
What’s the easiest way to get Screenshot for your app, for App Store submission? [closed]
Let’s start off with saying that the status bar is allowed in the screenshots, however not encouraged and in Apple’s Guide it says that it shouldn’t be included. As to your second question, there are a few methods. Firstly, you have to have a screenshot for the current major screen sizes: 5.5″, 6.5″.If you have … Read more
Speeding-up the Apple review process for iOS application for patches and hotfixes [closed]
If you need to push a critical bug-fix to AppStore (either Mac or iOS), you may ask Apple for an Expedited Review Process. You may do so here: Request an Expedited App Review
iPhone reachability checking
From your screen shot, it seems like you do not have Reachability added to your project. You must download Reachability from Apple: https://developer.apple.com/library/content/samplecode/Reachability/Introduction/Intro.html And add both .h and .m files to your project. Update: You noted you have Reachability. But looking at the most recent version, I can see why you have the errors you … Read more
Does apple view the actual source code when approving apps?
While none of us have access to the internal review process (which appears to be continuously changing), there are a few things that can be said based on the responses that people have received. First, Apple has no access to your source code, so they do not review that. You submit a binary as part … Read more
iOS installing apps without app store [closed]
Apple supports “Ad-Hoc” application distribution for exactly this purpose, but it is limited to 100 devices. If you have an Enterprise developer account, you can do Ad-hoc distribution within your organization, as well. iOS Developer Distribution Options iOS Developer Enterprise Program
In app purchases restore Button
I use a variation of this: //inside of an IBaction [[SKPaymentQueue defaultQueue] addTransactionObserver:self]; [[SKPaymentQueue defaultQueue]restoreCompletedTransactions]; // Then this is called – (void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue { NSLog(@”%@”,queue ); NSLog(@”Restored Transactions are once again in Queue for purchasing %@”,[queue transactions]); NSMutableArray *purchasedItemIDs = [[NSMutableArray alloc] init]; NSLog(@”received restored transactions: %i”, queue.transactions.count); for (SKPaymentTransaction *transaction in queue.transactions) { NSString … Read more