Tagged Questions

9
votes
1answer
3k views

Call the official *Settings* app from my app on iPhone

At one point in my app, I would like to redirect the user to the official Settings app. If possible, I also want go straight to the Network section within the Settings app. I think what I need is the ...
9
votes
3answers
5k views

iPhone Safari: check if URL scheme is supported in javascript?

Is there any way to check if a URL scheme is currently registered on the phone... with javascript?
8
votes
1answer
1k views

Find all registered mime-types / url scheme protocols (intent filters) on iOS ( iPhone / iPad / iPod )

I'm a mobile web developer, and I'd like to test a few iOS devices to see what mime-types and url schemes the average iOS device can accept. On Android I'm able to install an app called ...
6
votes
1answer
3k views

iOS Launching Settings -> Restrictions URL Scheme

I've recently discovered the awesome iOS5 custom Settings URL Scheme, which can be explained in detail at this great website: http://handleopenurl.com/scheme/apple-settings-app I've found this to ...
5
votes
4answers
5k views

How to tell if Cocoa Touch device can make calls?

I'm writing an iPhone application that provides a button to call a phone number. I'm using code like the following to dial the number using a tel: URL in the usual way: NSURL* contactTelURL = [NSURL ...
4
votes
1answer
1k views

How to check for custom url scheme on iphone?

I want to use custom url schemes in my app, for example calling navigons mobile navigator. First of all I want to check whether navigon is installed or at least whether the custom url scheme ...
3
votes
1answer
175 views

iOS URL Scheme Length

Is there a limitation on the length of a URL Scheme for an iOS App? We have a number of apps and want to prefix them with the name of our 14 character company name to prevent ambiguity. I don't see ...
3
votes
2answers
1k views

make a call from my iphone application

I have implemented the ability to make a call from clicking on a row of descriptive tableview of my hotel; I used the URL scheme by writing the following code in method "didSelectRowAtIndexPath ": ...
3
votes
2answers
847 views

Launch iPhone app from link in email

I've been trying out the URL schemes in the iPhone SDK and I have got my application to launch using a custom URL scheme like "myap://Dosomething" but that is not really practical for what I want. Is ...
2
votes
2answers
249 views

WhatsApp url scheme for iPhone app

We are developing an iPhone app and planning to integrate Whatsapp. Is there a way to enable click to call / message from the iPhone app? Skype allows this by following: <a ...
2
votes
3answers
135 views

Is there a list of popular iOS twitter clients and their custom URL schemes for following and tweeting?

I assume every serious twitter client supports custom url schemes such that developers can send pre-compose tweets or suggest users to follow someone. I wasn't particularly lucky finding such a list. ...
2
votes
1answer
1k views

Access TomTom navigation solution via URL scheme

I'm currently working on an iPhone Application which allows the user to navigate to POIs. Those POIs are defined via lat/lon, and the user should have the possibility to start his navigation solution ...
2
votes
1answer
535 views

Facebook Authentication - issue coming back into my iPhone app via custom url scheme

I am trying to use the new Facebook 'one-time authentication' process in my iPhone app. The idea is that the app links out to either the Facebook app or Safari to ask the user to log in to Facebook, ...
1
vote
1answer
77 views

How can I launch back the app that opened my custom URL scheme?

I'm working on an app that manages my own URL scheme so I implement the callback: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions (NSDictionary *)launchOptions { // ...
1
vote
1answer
156 views

Error launching native application from web app - iOS - URL can't be shown

I'm running into a bit of trouble trying to call my native iOS application from my web app (apple-mobile-web-app-capable). Whenever I'm in Safari pressing the button to open my app with a custom url ...
1
vote
2answers
279 views

How to add your app to notification center?

How to add your app to notification center? I want to create an custom link that will appear in notification center for my app. Like Quickpick create shortcuts. Any advice, link tutorial related ...
1
vote
0answers
184 views

How to call back to the application from Safari browser when successfully loged in?

I am using webservice in my app. I have set one button login with facebook button, that drag user to safari browser and open facebook login page. Here I have not used Facebook API, all things are ...
1
vote
1answer
600 views

how to use MessageUI framework to send iMessage messages on iPhone

Is it possible to send messages from inside an app, using MessageUI framwork on iPhone? Or, is there an URL Scheme for iMessage?
1
vote
2answers
582 views

iphone: launch app with youtube url?

I want to register a custom URL scheme that will enable my app to be launched whenever the user goes to a youtube url (http://www.youtube.com/watch?v=VIDEO_IDENTIFIER) in the browser. Is this ...
1
vote
1answer
408 views

Loading a custom URL scheme on iPhone from Javascript?

I have an application that uses stringByEvaluatingJavaScriptFromString to modify HTML that I have no access to (like Greasemonkey). Specifically, I want to store the username and password from a login ...
1
vote
1answer
433 views

Custom URL Schemes on iphone oauth twitter

After sending the user to safari to authorize, i get sent to mobile.twitter.com as opposed to my custom url scheme (something like myapp://). at the request token step, I did receive ...
1
vote
3answers
365 views

How do I add a task to Things using the URI scheme?

The iPhone/iPad app 'Things' has a registered URI scheme. I know it exists: things:// in Safari launches Things. I'd like to use it from a web application. Is there any documentation for it?
1
vote
1answer
645 views

URL Schemes in iPhone application

I have an iPhone application which I wanted to add URL schemes to. The thing is that I have both a free version and a plus version. What I would like to do is use the same scheme for both apps, but ...
1
vote
2answers
1k views

handleOpenURL not called using a custom url schema in iPhone OS

I have successfuly added my own url schemes to my App. The App correctly launches using the schemes. Now I want to handle the incoming data but the delegate is not called. It is an universal app and ...
0
votes
3answers
42 views

I wanna put an xml file content into a URL, can I?

NSURL *url = [NSURL URLWithString:@"appName://<?xml version=\"1.0\" encoding=\"UTF-8\"?>"]; But the url = nil. I found if I remove the "<" and ">" signs, it will be ok. So, the two signs ...
0
votes
0answers
48 views

Is it possible to launch an app via Safari with its itunes id and redirect to AppStore if not found on device?

What I'm trying to do is: Make user scan a QR code [no problem] By using the URL embedded into the QR code, device should launch my application if it's installed in device. (Like using url schemes) ...
0
votes
2answers
103 views

Attachments using email uri scheme in iOS

I am implementing an iphone application (iOS 4.2) from where I would like to trigger the email client to send messages with attachments. I could effectively use uri schemes in combination with the ...
0
votes
1answer
52 views

handleOpenURL only works when app is already launched, crashes when app is closed

I am using URL Schemes to be able to open my app using a url. It is working fine when the receiver app is running. The problem however, is if the app is closed. If I type in the url into Safari for ...
0
votes
0answers
119 views

iPhone URL Scheme messing up my Javascript

I'm trying to develop a web-based app for the iPhone here. Everything works perfectly (tested in browser) however, when I take this: function goToLocation() { latitude = ...
0
votes
1answer
97 views

Send data to app without launching

I was wondering if there is a way to send data to another app i.e. a custom URL scheme, without opening the app.
0
votes
1answer
162 views

ooVoo URL Schema on iPhone

Anyone know if there's a URL schema for the ooVoo iPhone app? For example, I'm able to launch the Skype app from my app using "skype:userName?call", but there doesn't appear to be an "oovoo:" URL ...
0
votes
1answer
210 views

URL schema and open program

my iPhone program use a URL schema and work successful, to do this is only fallow this tutorial. Ok, when the program start, i use the function - (BOOL)application:(UIApplication *)application ...
0
votes
1answer
984 views

How secure is inter-app communication in iOS?

I have come across a few articles on inter-app communication on iOS, e.g. "2-way app integration on the iPhone: How it works", and "Apple Approved iPhone Inter-process Communication". Essentially they ...
0
votes
1answer
538 views

Choosing what Iphone app must open one url schema

Hi All I'm able to open a url scheme with my apps. However i can have more that one app with the same url scheme registered so i would like let user choose the default app for the scheme. I need to ...
0
votes
3answers
1k views

custom URL scheme doesn't work! Navigon AppInteract

It is really frustrating me. I used the doc provided by Navigon itself. Unfortunately it doesn't work as expected. Navigon launches, but stops at the main menu. All I do is this: NSString *myTestStr ...
0
votes
4answers
3k views

How do we get arround Apple's decission to skip sms templates for iPhone?

Old title : How to code an iPhone app that will send predefined smses to predefined numbers? Many people I am sure use a smart netbank that lets you transfer money from your savings account to your ...