0

I trying to find a way for opening an installed application from my iPhone app with a selected image file. An app named "Good Reader" which i want to open from my app. Can anyone suggest the procedure.

Thanks in advance.

Nabeel Thobani
  • 939
  • 10
  • 23

2 Answers2

3

You can open URL from your app. I've found that Good Reader app has scheme Goodreader:.

Sviatoslav Yakymiv
  • 7,887
  • 2
  • 23
  • 43
1

You can only launch apps that have registered a URL scheme. Then just like you open the SMS app by using sms:, you'll be able to open the app using their URL scheme..

NSURL *myURL = [NSURL URLWithString:@"Goodreader://"];
[[UIApplication sharedApplication] openURL:myURL];

check out This tutorial Custom URL Scheme

Toseef Khilji
  • 17,192
  • 12
  • 80
  • 121