Tagged Questions

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 ...
2
votes
3answers
160 views

Load another application when entering background

Is it possible to load up another application when the first application enters the background? Say I have application 1 and application 2 installed. When application 1 enters the background, the ...
1
vote
1answer
45 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
180 views

UIWebView interact with SMS application

I have an app that uses UIWebView to load a page. I have a SMS button on that site. How can I have Xcode read that button and open the iPhone SMS client once you click on that button?
1
vote
1answer
423 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 ...
0
votes
1answer
197 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 ...