ashishkakkad.com
Little snippet to know if application is installed via TestFlight - Ashish Kakkad
I found little snippet from twitter about how to know if application is installed via TestFlight. Here, `appStoreReceiptURL` is an instance property, which we can find from main bundle. Here, I am adding snippet for both Objective-C and Swift. Objective-C - (BOOL)isTestFlight { NSURL *appStoreReceiptURL = [[NSBundle mainBundle] appStoreReceiptURL]; if (appStoreReceiptURL != NULL) { return ... Read more
Ashish Kakkad