openurl Questions
1
Solved
I am trying to open a url ( "tel:061245124" or "mailto:[email protected]") and it says that i can handle url, also tried without the tel: or mail to but it crashes with a red screen.
Urls like...
Apostrophe asked 26/6, 2017 at 22:43
1
Solved
I am trying to handle local notifications by opening a URL on iOS 10 / Swift 3. I have one URL assigned to the notification's default action and another assigned to a custom action button.
When t...
Hotblooded asked 10/4, 2017 at 23:58
2
Solved
On iOS 8 beta 2 it should be possible to use openUrl from app extension as written into the release notes:
however when I try to use this API (on Xcode 6 beta 2) I get the following error:
Be...
Pontoon asked 22/6, 2014 at 22:21
2
Solved
After updating to 10.3, my app no longer automatically dials a phone number after pressing the call button in my app using the openURL: options: completionHandler: method.
Instead, a prompt comes ...
2
Solved
with iOS9 application openURL:sourceApplication:annotation is deprecated
func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject?) -> ...
1
Solved
Specifically, from my app I'd like to open the Messages app and activate my iMessage extension with:
an existing MSConversation (via the remote participant UUID?)
a new MSConversation (via a CNCo...
Growl asked 28/6, 2016 at 14:19
3
Solved
I have this method
- (IBAction)facebookButtonPress:(id)sender {
NSLog(@"fb hit");
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[@"www.facebook.com/asbreckenridge" stringByAddi...
Sprouse asked 14/4, 2014 at 19:35
2
The above code is always returning false
if {(UIApplication.shared.canOpenURL(URL(string:"comgooglemaps://")!))}
I guess this a problem found in iOS10.
I am trying to open google maps app...
Ingeminate asked 18/10, 2016 at 23:21
1
I have integrated whastapp in my iOS app. When I tested it in my iOS 10 device. It crashes with an issue.
Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your v...
Extraction asked 14/10, 2016 at 10:24
2
I have a strange redirect to app issue with our login system in iOS 9 only.
Now, I already have abitrary payload allowed and my url schemes are setup properly in my plist file.
What happens is th...
Orthocephalic asked 27/1, 2016 at 20:21
3
Solved
I'm using the following code:
NSString *customURLString = [NSString stringWithFormat: @"secondApp://?%@", [document fileId]];
NSURL *customURL = [NSURL URLWithString: customURLString];
[[UIApplica...
Unoccupied asked 14/1, 2016 at 17:9
2
Solved
I have some URLs in my app which takes the user to Safari browser through openURL API.
My aim is to sent the auth token to Safari from the app, so that user will be logged in by using this token. ...
Incorporeal asked 7/10, 2015 at 14:57
1
I need to send a pre-filled message from my app to the fb messenger app. I followed the post SO Link. The custom URL just opens the fb messenger app but shows no change.
Below is the code that I h...
1
I have a HTML page with a Download app button. When clicked by an iOS user, it redirect the users to the App Store via itms-services. The link I used here is:
window.location.replace("itms-apps:/...
Araroba asked 25/3, 2015 at 23:27
2
3
Solved
In iOS 6 or 7, the app exit to the home screen when I call UIApplication openUrl with a url of itms-services://XXXX to install a new version of my app (using enterprise deployment with ipa files).
...
1
Solved
I'm using this code to open iTunes Store app and search for specific music:
NSString *iTunesLink = [NSString stringWithFormat:@"http://search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?ent...
Valerle asked 11/10, 2014 at 10:52
2
I go through this part:
How do I extract the data from that URL? I only want to print out the "networkdiff": 58954.60268219.
from urllib import urlopen
url = urlopen('http://21.luckyminers...
1
Up until a few days ago, the following URL handler to redirect a user for gifting an app worked:
static NSString * const kAppStoreGiftURL = @"itms-appss://buy.itunes.apple.com/"
"WebObjects/MZFi...
1
Solved
I have an app that will be using both Facebook and Instagram API's, both of which require me to use this delegate method:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sour...
2
Solved
I'm actually trying to call 2 digits phone numbers via openURL (works properly for 3+ digits).
On IOS 6 i was using an hack, like this :
if (self.numberToCall.length < 3) {
self.numberToCall ...
Halfcocked asked 26/9, 2013 at 11:44
4
Solved
I hope this may be duplicate question. But none of the answers didn't hard help me. I am trying to open a link from my iOS application. When I press the button, It opens the safari app and it alway...
Ungava asked 30/11, 2012 at 12:43
4
Solved
Second Update
After doing some more digging, there seems to be a bigger issue at play.
The reason why openURL is not fired, is that the app seems to be freezing when it is brought back to the fore...
1
I have a simple contacts app that is intended to operate in Guided Access / Single App Mode. When the user hits the contact the app initiates a phone call:
[[UIApplication sharedApplication] openU...
Arapaima asked 1/12, 2012 at 22:18
3
I have upgraded the facebook in my ios app to 3.0 and using the code provided at https://developers.facebook.com/docs/howtos/login-with-facebook-using-ios-sdk/ for user login through facebook , but...
© 2022 - 2024 — McMap. All rights reserved.