iOS Developer Tips - Visitor Stats:
|
|
|
Launching Your Own Application via a Custom URL Scheme
One of the coolest features of the iPhone SDK is an application’s ability to “bind” itself to a custom URL scheme and for that scheme to be used to launch itself from either a browser or from another application on the iPhone. Creating this kind of binding is so simple, its almost criminal not to use it in your application!
Before you get started, you need to figure out how you want you application to respond to the URL. The simplest way to use custom schemes is to just “wake up”; but it is also possible to pass information to the application via the URL, and in so doing, enable the application to do different things when woken up.
Registering Custom URL Schemes
Regardless of what you want to do once your application is started, the first step is to register a custom URL scheme with the iPhone. This is done via the info.plist file located in your application’s project folder (NOTE: this is the same file you would change to define a custom icon).
By default, when opened, XCode will edit the file in a graphical UI. It is possible to edit the info.plist file directly in Text mode which may be easier for some people.
Step 1. Right-Click and “Add Row”

Step 2. Select “URL types” as the Key

Step 3. Expand “Item 1″ and provide a value for the URL identifier. This can be any value, but the convention is to use a “reverse domain name” (ex “com.myapp”).

Step 4. Add another row, this time to “Item 1″.

Step 5. Select “URL Schemes” as the Key.

Step 6. Enter the characters that will become your URL scheme (e.g. “myapp://” would be “myapp”). It is possible for more than one scheme to be registered by adding to this section though that would be strange thing to do.

NOTE: If you open the info.plist file in a text editor you will see the following has been added to the file …
CFBundleURLTypes
CFBundleURLSchemes
myapp
CFBundleURLName
com.yourcompany.myappOptionally Handle the URL
Now that the URL has been registered. Anyone can start the application by opening a URL using your scheme.
Here are a few examples …
myapp:// myapp://some/path/here myapp://?foo=1&bar=2 myapp://some/path/here?foo=1&bar=2
The iPhone SDK, when launching the application in response to any of the URLs above, will send a message to the UIApplicationDelegate.
If you want to provide a custom handler, simply provide an implementation for the message in your delegate. For example:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url { // Do something with the url here }
A common technique is to parse the URL passed in and pull from it the parameters that will be used by various views in the application and store them in the User Preference. Below is an example where we store the URL as a value parameter “url” in just such a manner …
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url { if (!url) { return NO; } NSString *URLString = [url absoluteString]; [[NSUserDefaults standardUserDefaults] setObject:URLString forKey:@"url"]; [[NSUserDefaults standardUserDefaults] synchronize]; return YES; }
Now you have everything you need to enable others to wake-up your application and even pass it information! Enjoy!







great! thx a ton for this…
but what happens incase of conflicts… more than 1 applications have same URL scheme ?
/V
[Reply]
How can we make the URL of application such that User can click on the email or in the sms and Our app can start??
Thanks in advance
[Reply]
I my be barking up the wrong tree.
I am wanting to add a url to my iPhone app that would launch safari, then load my website, when you tap on the url text in my app.
Thanks for any help you can offer.
Mark
[Reply]
@vibhor If there is already an application registered with that scheme then it will throw an exception when it first attempts to bind. Your questions is a good one however. I’m not sure how you “work-around” that issue.
[Reply]
@sanniv
You may want to check out:
http://iphonedevelopertips.com/cocoa/launching-other-apps-within-an-iphone-application.html
[Reply]
I love the idea of this, but Apple have managed to leave out custom scheme recognition from two of its core applications, MobileMail and SMS. Using any of these custom schemes here won’t work as these apps do not recognise the links.
[Reply]
@vibhor / @rodney
I’d like to follow up on vibhor’s comment. I have the same application “skinned” for different clients. I tried originally set up:
URL Identifier as com.client1, com.client2 etc and
URL schema as myapp
If I install different client apps to the same phone then the app which gets launched through the myapp:// URL is the most recent one installed.
Instead I changed the URL schema to myappclient1, myappclient2 etc which solves the immediate problem for my application(s) but it still does not resolve any conflicts introduced from other applications.
The URL identifier part of this setup seems redundant. Can anyone explain what it is used for?
Thanks…
[Reply]
HI…
Thanks for the great help…
But I am trying to use this to integrate my web application with iPhone app… I have put the URL directly on the html page and when user clicks on it is launches my native application. Now I am doing this successfully using the same technique given above.
But if the app is not installed on user’s phone then I wish to take him to the store to my app. So can anyone please tell me how can I work this out.
[Reply]
@Saurabh– You have to give 2 buttons in your html page and also ask user if they have app, press “Launch app” button and if they don’t then press, “Get App” button and in get app button call the itunes url of your app.
I think in this way you can take the users to store to your app.
[Reply]
Thanks for you help guys. I did get it worked out finally.
[Reply]
Q: Will this work from within the app? For instance, in a tab bar-based app with multiple Web Views, it would be nice to be able to pick a link within one web view, and immediately end up at application:handleOpenURL: since the app is already running. (If not, how is this sort of thing accomplished within an app that uses web views?)
[Reply]
MuiKit, my “random stuff” library, has a category for parsing query strings in URLs. See http://github.com/millenomi/muikit/blob/master/NSURL+L0URLParsing.h and http://github.com/millenomi/muikit/blob/master/NSURL+L0URLParsing.m for more.
[Reply]
We’re working on a centralized place to register all public URL schemes: http://www.handleOpenURL.com
Please add your URL schemes to the index: http://www.handleOpenURL.com/developers
The aim is to work towards a more elegant and advanced manner of sharing your apps functionality with other apps.
Thanks,
[Reply]
Q: can i use this tutorial to do a call from my app. without [[uiapplication sharedApplication]openURL:@”tel:1000000001″]?
[Reply]
Anyone figure out the answer to @Joe’s question above? Can you use these from within an app to message that same app without relaunching it?
[Reply]
@Aaron: Greetings! If application:handleOpenURL: is _not_ invoked, the next best thing might be to check the delegate method webView:shouldStartLoadWithRequest:navigationType: … though I’m hopeful it’s still possible the other way. :)
[Reply]
Regarding Joe’s question…
Create a class that implements the IWebViewDelegate protocol and implement the shouldStartLoadWithRequest method. When your webview needs to load a page (via a clicked link, an ajax request, some sort of javascript event, whatever…) it will call this method on your delegate and pass in an NSUrlRequest object.
if [[request url] scheme] is your app’s custom scheme, go ahead and do whatever it is the url indicates you should do, and return NO to prevent the webview from continuing to process the request. If the scheme isn’t something you want to catch, return YES to let the webview handle the request in the usual manner.
PhoneGap does this (see /iphone/PhoneGapLib/Classes/PhoneGapDelegate.m) in a very elegant way, providing a way for their javascript framework to call methods written in obj-c. They use the stringByEvaluatingJavaScriptFromString method of the webview to pass information back into the browser from obj-c, which is also pretty slick.
[Reply]
@brandon – right on! Thanks for walking through that. Very much appreciated.
[Reply]
I’ve written an app that hides the status bar at the top of the phone (the one with the carrier, etc.) When I open it using this method, the bar shows up. How can I keep it hidden?
[Reply]
What happens if the iPhone or iPod touch doesn’t have the app installed?
[Reply]
@Lawson Culver – this one had me bugged too. Instead of doing it through code ( [[UIApplication sharedApplication] setStatusBarHidden: YES]; ) you will need to add the “Status bar is initially hidden” line to your Info.plist and check the box. Once I did that, it worked for me!
[Reply]
This works in a surprising way for me. I can launch the application through safari, but none of the deleagate gets called, no action methods gets called, but the app does launch. Wat can be the problem???
[Reply]
I have 2 apps, myapp1 and myapp2. I have configured a tab in myapp1 to launch myapp2. I have created custom url schemes for each app, so that one could call the other and vice versa. I have tested launching myapp2:// from myapp1 (with http://) and that works. When I use myapp2:// it does not. Both apps are installed on the device using ADHOC profiles.
Question: Does this only work if at least one of the apps (e.g., myapp2) is installed via the app store? I cannot understand how one custom app would be able to know about another custom app. It doesn’t seem like creating a custom url scheme goes the distance.
Has anyone tried custom app to custom app use of the custom url schemes approach? Thanks,
Jack
[Reply]
As a rookie I have question you probably all be able to answer. I am building a mobile website and would like to include a line of code that automatically launches an iPhone app. It should be through some kind of URL link. Do you know how I could make this work? What is the ‘launch code’ or URL code for an iPhone application that you would have on your phone?
any tips are mostly appreciated!
[Reply]
@Robbert:
Simply use the apps custom URL scheme in a link like so:
You can extend that with a small timeout to redirect the visitor to the Apps homepage or the iTunes page when the app is not installed like so:
If the app is not installed, Safari will alert the user that it cannot open the link. Once the user clicks the OK button the setTimeout will kick in and send the user on to the apps page. You will want to work on this to inform/query the user on the next action.
You can check a lot of URL scheme’s of different apps at: http://handleOpenURL.com/
Good luck with your mobile site!
[Reply]
Hm, I didn’t expect the links to translate… the first was supposed to state:
http://ithrown/start
The second was supposed to have an onclicked attribute with a setTimeout function in it redirecting the user in 500 mSeconds giving Safari enough time to pass control to the app if it is installed but short enough to keep the show going.
[Reply]
thanks a million, that is really brilliant and totally solve my problem!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[Reply]
Thx for the post!
Any idea on what to do if the mail app (on the iPhone) does not recognize the link as such (instead it is displaying plain text that can not be interacted with).
[Reply]
James Reply:
June 2nd, 2011 at 7:45 am
Did you ever figure this out Boris? I’m having the same problem
[Reply]
John Muchow Reply:
June 2nd, 2011 at 7:59 am
I’ve been able to use @”mailto://foo@foobar.com” in the body of an sms, which will create a link that launches the mail app on the iPhone. Is this close to what you are looking to do?
[Reply]
James Reply:
June 2nd, 2011 at 8:10 am
Im Using a webservice that send an email to the client which notifies them of an update to the app. Then Once they click the link inside the email, they should go to my custom app. For some reason mail won’t interpret the link as a link, but if i put the scheme in the url it works. I’m stumped
[Reply]
@Boris
You might want to try to make an HTML (rich) email with a link in it.
(To avoid spam-filters you should use the same link in the href as the visible one.)
Another, albeit less elegant, option is to create a page at your server which will transfer visitors over to the app. So the link in your emails point at http://www.your-server.com/transfer-to-app?open-code and the script redirects Safari to the correct location. Safari WILL recognize the URL scheme and will open the app accordingly.
You can also display a link to the itunes store here for those who do not have the app installed.
In PHP this would look something like:
Hope that helps.
[Reply]
Jason Rundell Reply:
August 24th, 2011 at 12:07 pm
DUDE! Thanks! That PHP is exactly the answer for me!! I’m going to build a PHP script which will take into account the client viewing a QR code and server up either a web URL or activate a Forusquare app check-in
[Reply]
Is there any other way to launch an application with out using this URL Scheme ?? I mean just by knowing its name .. ?
[Reply]
@Maarten is there a way to automatically determine if an app is installed using a variation of your script? Perhaps in the UIWebView we could detect that it will try to navigate to a custom protocol and then ask UIWebView to stop the navigation (in ObjectiveC we can listen to this event). Thoughts?
[Reply]
@Dee no There is no other way. Tap the icon or use the URL scheme.
@Laurent when in a native app you should use [[UIApplication sharedApplication] canOpenURL:-putyourschemehere-]
please do a search on this as I typed it while playing with the kids :-)
[Reply]
Thanx Maarten.
What I need is .. I have to launch my application through another application when we click on a button. I tried this requirement using URL Scheme. Its working and I just want to know is there any other way to do the same task ??
These 2 are the assumed conditions:
The app which I am trying to launch is already there in iPhone and I know the name of the application.
[Reply]
@Dee: No, there’s no other way. It doesn’t matter that you know those things, the OS only allows apps to be started by URL schemes.
[Reply]
@Maarten very cool, thanks a lot! I didn’t know about canOpenURL
[Reply]
Hi Maarten,
Finally I got it … Thanx for the reply ..
Dee
[Reply]
Hi, interesting post, i am looking for a url scheme that will have the new sms page open with a number filled in the TO field, and some text in the body field, i managed to make the first part work, which is the TO field by using the uri scheme sms:[1234556], but could not manage to have the body part pre-filled, can anyone help me with this one plz?
cheers,
F
[Reply]
I am triggering call from my app,will I be able to relaunch my app when once the call was disconnected?
Kindly any body help me…….
[Reply]
@Mark Collins “I my be barking up the wrong tree.
I am wanting to add a url to my iPhone app that would launch safari, then load my website, when you tap on the url text in my app.
Thanks for any help you can offer.
Mark”
Use this code
[code] [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.apple.com"]]; [/code]
[Reply]
I’m figuring that the best way to handle uniqueness of the URL scheme is to also have it be com.company.appname. I researched valid url scheme names and there are certainly standard url schemes (z39.50r for example) that have periods in them. So when you activate your app via webpage the url would look like “com.company.appname://whatever_parameters_you_want”. Any flaw with this approach? Not sure why we need a fancy registration process since this is pretty much guaranteed to be unique.
[Reply]
@FadiN: No, wont work. It is not possible to pre-fill the body part in the official text-app. There’s 2 more SMS apps in our index (http://handleopenurl.com/search?scheme=sms) of which the BeSMS allows setting the body. You can check if that app is available on the users’ phone (or iPod Touch, BeSMS works there too!). If it is, you can use that and otherwise fall back to the ‘normal’ SMS app.
@Dinesh: There is no way to return to your app from the telephone app.
@Paul: completely right you are. A fancy registration would only be useful if you would want to publish the possibilities of your app.
[Reply]
manish Reply:
February 14th, 2011 at 1:26 am
@Maarten : First of all thanks for insight on URL scheme. But my problem in little different.
I wast to open iBook, PDF reader etc. applications through URL’s similar to what DropBox is doing. But the issue is how will I find the URL for these applications. I tried searching “http://www.handleopenurl.com/” but the URLs are not listed there.
Thanks in advance.
Manish
[Reply]
hi,
I am doing the exact thing .But i am getting this error “my app cannot be opened because of a problem : check with developer to make sure myapp works with this version of Mac os X.”
Please can anyone explain little more on this topic.
[Reply]
Awesome tutorial! Thanks a billion!
[Reply]
Nice tutorial, I have recommended it on my blog
[Reply]
Fantastic tutorial….
Thanks a lot!!!
[Reply]
Thanks! Exactly what I’ve been looking for.
[Reply]
We have an SDK that is embedded in 100s of games and would like to enable each of them to at least start from another app. It sounds like the scheme has to be in the info.plist which is read only in the app? Thats such a terrible design. I would really like my SDK to be able to set up a standard scheme in each game so that we could call each app … there are so few games with scheme’s in them
[Reply]
Great tutorial, thank you.
I am not a developper but woud like to ask the following question. When launching an app like this, can the app be displayed in a frame, instead of displayed full screen ?
[Reply]
Thanks a lot for this wonderful tutorial. How can I implement this in android?
[Reply]
Thanks, Great tutorial..
[Reply]
Hello,
This is a great post. I have an extremely simple webView application, and I would like to pass the URL in via a get operation.
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://punchedin.com/cgi-bin/start/appentry.html" + urlscheme ]]];
I added ‘urlscheme’ just to demponstrate what I am wanting to do. How can I append the url to the end of the initial URL the app goes to in its web view?
Thanks,
Terry Riegel
[Reply]
Is there URL scheme to launch “iPod app”?
[Reply]
Thanks for the article, very helpful. The documentation states that the application:handleOpenURL: has been deprecated in favor of application:openURL:sourceApplication:annotation:, but it all works the same.
And @Terry, look at this question over at StackOverflow: http://stackoverflow.com/questions/3790164/cocoa-app-handling-a-standard-http-url-scheme
Cheers,
EP.
[Reply]
This is very nice!, but how can i load the app?
with
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url;
you are making the app being able to get called.
but how can we call it?
[Reply]
John Muchow Reply:
June 21st, 2011 at 7:05 am
Check out this post that shows a few examples: Launching Other Apps within an iPhone Application
[Reply]
I don’t agree that it would be “strange” to handle multiple URL schemes out of one app – this is a good way to separate different types of data handled by the same application. On that basis, there would never have been http , ftp, telnet, https – type links in a web browser.
[Reply]
How to open standard calendar for iPad?
[Reply]
Is it possible to launch a ‘bookmarked webapp’ via a URL instead of just go there with Safari? Someone knows a solution? :)
[Reply]
Hello,
I want to dispaly url in the form Google having hyperlink as http://www.google.com bu t i want to display only text part having hyperlink on it.
Please suggest me the solution.
Thanks
[Reply]
Hi,
I need to hook my application into other applications.
For example :
In the mail client, there is “openin” option, which lists office2, dropbox etc.
How do I add my app into this list ?
Thank you.
Mahesh.
[Reply]
@Manesh, you should check out the documentation about registering the file types your app can handle. Check http://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html%23//apple_ref/doc/uid/TP40010411-SW1
[Reply]
@Mahesh, sorry for misspelling your name.
[Reply]
Mahesh Reply:
September 9th, 2011 at 12:13 am
@Maarten : Thanks a lot, will look into it. Seems to serve the purpose. Thanks again.
[Reply]
@Maarten,
I followed the steps mentioned in the documentation link to register the system that my application is capable of handling PDF files.
Please note the following :
Mac OS X : 10.6.4 Snow Leopard
XCode version : 3.2.2
iPhone Simulator version : 3.2
The code was built against “Simulator-3.1.3 | Debug”.
When the simulator launches the iPhone, I downloaded a pdf file from web on Safari.
It downloaded and opened it, but it did not have any “open in” option at all.
Basically there is nothing like “file manager” in iPhone, where I can browse the file and check if my application is listed as an option to open with. So I have to rely on downloading pdf files into other applications and try to check if my app is listed as a contender to open it. Thats what I did with Safari but the “open in” option itself is not present there.
Am I missing something ? wrong versions of XCode or Simulator ?
Appreciate your help in this regard.
[Reply]
Maarten Reply:
September 9th, 2011 at 8:39 am
Manesh,
I pointed you in the right direction. You should go google now.
Best,
Maarten
[Reply]
Nice thread here, thanks for all the good comments.
I just try to use a custom URL scheme for my starting app from the iPhone Calendar’s notes section, but it doesn’t seem to work. The http:// and mailto: schemes do work – so is it possible at all to use a custom URL scheme to launch an application from the Calendar’s notes, or does it only work for some special schemes that the calendar is reacting to?
Any help appreciated …
[Reply]
Hi ThisIsMe,
The calendar app only responds to preset schemes. Not to the schemes available on your device.
Too bad.
The (ugly) workaround would be to create a redirect on a webpage and link to that from your calendar event. Clicking would open the webpage in safari ad safari would handle the redirect correctly. Lot of screens flying by to open your app though.
Best,
Maarten
[Reply]
Hello Maarten,
Thanks for your answer – but you are wrong :)
Just after posting the question I found the answer myself by accident – if you enter the url scheme in the calendar notes like
yourapp://
instead of only
yourapp://
it works! Apparently the URL scheme parser only recognizes the scheme if some characters follow the two slashes (maybe a space is also enough, I didn’t try that, as I need a parameter anyway).
[Reply]
Maarten Reply:
September 27th, 2011 at 8:56 am
Great find!
Always love to be proven wrong :-)
You are completely right. At first I couldn’t confirm this but I was trying to set the scheme in the title in the event. Apparently it doesn’t work there. In the location field it works perfectly. Nice!
Thanks for your response.
(oh, a space character does not work by the way)
[Reply]
Hi Maarten,
I have a view based application in which I had added UITableViewCell controller class.
In the main view controller, there is a button “settings”, when this button is clicked, the AppDelegate
switches the view from main view controller to table view controller. Now, I want to add a navigation bar
in the table view controller programatically. How do I add the navigation bar in the table view controller ?
I tried the following :
In “viewDidLoad” method, created an object of UINavigationController, added it as a subview to the main view. Basically did the following :
-(void) viewDidLoad {
UINavigationController *navig = [[UINavigationController alloc] initWithRootViewController:self];
[self.view addSubView:navig.view];
[super viewDidLoad];
}
It looks like with the above implementation, we need a reload of view, how do we do that ?
[Reply]
Maarten Reply:
September 29th, 2011 at 8:59 am
Hey Mahesh,
This is out of the scope of this blog post. You should take this to StackOverflow I guess.
[Reply]
Is there a way to open native calendar application with some url scheme?
[Reply]
From Apple Developer docs: http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/AdvancedAppTricks/AdvancedAppTricks.html#//apple_ref/doc/uid/TP40007072-CH7-SW50
Note: If more than one third-party app registers to handle the same URL scheme, there is currently no process for determining which app will be given that scheme.
[Reply]
Great post
[Reply]
Excellent tutorial about handling url schemes ! Thanks but I have a question too. I am sending two strings to my friend with a sms and the link of the url like “map://” in the sms but when it comesthe second link couldnt work like a http link. I turned it to “http://map://” then it went to browser but there is no page. When I write “map://” or”map:” to browser in my iphone it launches my application. How can I redirect to my app with the link or sth in the sms or mail body maybe
[Reply]
I have my custom url working because I can open my native app from a web page. However, I can not open up a subdirectory within my native app from a web page. For Example:
Custom URL Scheme:
myapp://
Custom URL Scheme with subdirectory:
myapp://folder/index.html
Every time I run the second url, it only takes my to the first page of my app. Which would be just myapp://.
There has to be something else to code in. From your post it looks fairly straight forward. I just can’t get it to access the subdirectory. I can get it to access the subdirectory once I have the native app open.
By the way, I am running phonegap. That’s why I am accessing an .html page.
Thanks.
[Reply]
John Muchow Reply:
November 22nd, 2011 at 10:53 am
Hi Nathan, I’m not sure I can be much help as I am not familiar with using phonegap. Does phonegap have a forum where you might be able to get some insight?
[Reply]
Nathan Reply:
November 22nd, 2011 at 11:11 am
They have nothing on it. It sets up the same way. Phonegap has a plugin for xcode.
So it’s all through xcode. Accessing the app is fine. It’s just accessing any type of subdirectory. I’m not
sure it’s just PhoneGap or the way I’m setting it up.
I would like to see how someone sets up an xcode app with subdirectories as well.
I can’t find anything on the web that shows this. For example, facebook has subdirectories and they have
custom urls like this…
fb://album/%@
fb://album/(aid)
fb://album/(aid)/cover
fb://album/(initWithAID:)
fb://album/(initWithAID:)/cover
fb://album/new
fb://albums
fb://birthdays
etc…
How would this look in the folder structure of xocde? I just seems that nobody truly understands this.
Thanks.
[Reply]
John Muchow Reply:
November 22nd, 2011 at 11:17 am
I’m not sure if I understand what you mean to the first page of your app. In a native iPhone app, there is no concept of pages, an app consists of views. If a phonegap app is essentially an html app (with paths to html, javascript, etc), then I would guess you would need to work this through phonegap. Sorry I can’t be of more help.
kaan Reply:
November 23rd, 2011 at 2:12 am
I have solved my custom url scheme problem written above by sending “map://” url in a http link like “http://map://…” . When I click, it redirects to a .aspx page and is cropped to “map://” and returns then my app is started. For subdirectories you should define url scheme and key paths like FB and then you can use this redirection method. For Xcode i think it may not work clearly, because if there is no multitask operation and you go to for ex. “map://album/” it will always open the first view. But I think if the app goes background then this link willl open your page (may be with .html direction) May be we can use here the function applicationDidEnterBackground and applicationWillEnterForeground for redirection if it fails.
However I dont understand how these urls
fb://album/%@
fb://album/(aid)
fb://album/(aid)/cover
fb://album/(initWithAID:)
fb://album/(initWithAID:)/cover
fb://album/new
fb://albums
fb://birthdays
show like a link in an incoming mail and my url scheme “map://” doesnt. What do I need to do for this?
[Reply]
Nice tuto ! Thank you.
I try it and it works.
Now, i’m looking for a solution to mask the pop-up within Safari if the user doesn’t have installed the app…
Someone has an idea ?
[Reply]
I want to launching to other app and after 5 min I want to return to my own app, is it possible?
Someone can help me or give me some idea ? Thanks~
[Reply]
John Muchow Reply:
December 26th, 2011 at 8:51 am
If your application also has a custom URL, the first app you launched could set a timer and call your app after 5 minutes.
[Reply]