Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linking the Developer Page at the appStore from an iPhone App

So I know how to open an app page on the appStore from within my iPhone app.

Is there a way to open my company's page? On iTunes on my mac I can do that, but using that URL in the iPhone I can't (or I'm not doing it right).

Thanks in advance.

like image 995
camilo Avatar asked Jul 01 '10 12:07

camilo


People also ask

How do I link to an iOS app from the App Store?

Find app link via App Store on iOS devicesStep 1: Go to the Apple App Store on your iOS device. Step 2: Search for your app and go to the app page. Step 3: Tap the Share Sheet button on the top right of the screen, then choose Copy Link.

How do I allow an app developer on my Iphone?

Tap Settings > General > Profiles or Profiles & Device Management. Under the "Enterprise App" heading, you see a profile for the developer. Tap the name of the developer profile under the Enterprise App heading to establish trust for this developer. Then you see a prompt to confirm your choice.


2 Answers

This is a great article on this subject: http://bjango.com/articles/ituneslinks/

Quote from the article:

http://itunes.com/apps/developer — Search for all apps by developer

It’s also possible to link to all apps by one developer, but there’s a catch. On a Mac or a PC, this will open iTunes and land on a developer’s page. On an iPhone or iPod touch it’ll do a bit of a dance, opening MobileSafari, then iTunes, then the App Store app. Not ideal, a bit ugly and slow, but it gets there in the end.

If you’d like to hide the redirections and speed up the process, Apple recommend using NSURLConnection.

like image 84
iwasrobbed Avatar answered Oct 10 '22 11:10

iwasrobbed


this prevents it to do little dance it does normally

 NSString *iTunesLink = @"itms-apps://itunes.com/apps/companyname/";
 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
like image 26
BObereder Avatar answered Oct 10 '22 11:10

BObereder