If you passed elementary math, you know there’s only so much market share to go around. If Windows Phone goes from a 4.3 percent share to control 20 percent of the market, that means another platforms growth is sure to slow. According to Gartner, Apple’s iOS will be the one to do so, growing from a 16 percent market share in 2010 to just 17 percent in 2015. Meanwhile, Android is poised to maintain control with growth from a 23 percent share in 2010 to a massive 49 percent in 2015, reports Bloomberg.
TechCrunch
There are two things you need to do. First, check to see if TestFlight is installed. Then create a new link to your app. NSURL *customAppURL = [NSURL URLWithString:@"itms-beta://"]; if ([[UIApplication sharedApplication] canOpenURL:customAppURL]) { // TestFlight is installed // Special link that includes the app's Apple ID customAppURL = [NSURL URLWithString:@"https://beta.itunes.apple.com/v1/app/978489855"]; [[UIApplication sharedApplication] openURL:customAppURL]; } This special https://beta.itunes.apple.com URL will be opened directly in TestFlight. Finally, if you are using iOS 9 (or later), you need to make an addition to your Info.plist to get the canOpenURL: method to work. If your app is linked on or after iOS 9.0, you must declare the URL schemes you want to pass to this method. Do this by using the LSApplicationQueriesSchemes array in your Xcode project’s Info.plist file. For each URL scheme you wan...
Comments
Post a Comment