Summary: In my application, I've defined a custom URL in the format "myapp://.." . But the URL is not recognized as a link when it comes in an SMS. So the user is not able to tap it and launch the app. Instead, he has to copy & paste it in browser. This happens only in iPhone4(iOS v5.0)

Steps to Reproduce: Define a custom URL for the app by specifying a new URL scheme in info.plist. Send an SMS with the custom URL of the app to iPhone4(iOS v5.0). Open the SMS.

Expected Results: The URL must be displayed as link in the SMS.

Actual Results: The URL is displayed there as plain text and not as a link.

Regression: Before upgrading to iOS 5, in the same iPhone4(iOS version 4.3), the URL was displayed as link always.

Notes: The funny side is that, if I forward the message from the same iPhone to itself, in the sent SMS and the newly received SMS, the URL will appear as a link.

link|improve this question

5  
Have you considered reporting this bug to Apple? Unless there is a work around I don't think anyone can help you here. – madmw Oct 26 '11 at 11:40
have the same issue, does anybody has a solution? – beryllium Nov 10 '11 at 14:28
Is the behavior limited to incoming SMS messages? For instance, if the same link is received in an incoming email in iOS 5, does it correctly work as a link? – Duncan Babbage Nov 12 '11 at 9:17
2  
tHis is limited to incoming SMS messages. The link when received in an incoming email in iOS5 works correctly. – Wasauce Nov 14 '11 at 7:40
1  
This is a bug in iOS 5. The url parser sometimes works, and sometimes it doesn't. File a bug report with Apple, and they'll eventually fix it. After extensive testing, I found that this bug even occurs with http:// links sometimes. – PartiallyFinite Nov 16 '11 at 8:41
show 2 more comments
feedback

4 Answers

up vote 1 down vote accepted

Check if you're using uppercase/mixed scheme (as in MyApp://...) versus an all lowercase (myapp://...). Under iOS 5, the OS won't recognize and will throw exceptions if you try to use uppercase in a custom URL scheme. If that doesn't work, it's almost certainly a bug with the SMS code in which case you should file a bug. Let me know if that worked.

link|improve this answer
1  
Can you accept one of these answers or say if it didn't work? – Dylan Gattey Dec 11 '11 at 2:25
I had tried it but that too didn't worked. Anyway as you said I am filing this as a bug to Apple. – Balu Ramachandran Jan 25 at 12:42
Well, good to know. Sorry you couldn't figure it out. – Dylan Gattey Jan 25 at 18:21
feedback

It seems the SMS url parser is not clever enough to work out that your url is for an app - my suggestion would be to use an http:// based url that will then redirect to the url for your app.

This would allow you to show a message to non iPhone users who might have inadvertently got the message and would also allow you to register that the SMS linked has clicked on all this is in addition to also working on iOS 5.

link|improve this answer
That one is a good work around but dont we need a definite fix for this issue? Anyway thanks for the answer it will be useful for quick fixes. – Balu Ramachandran Jan 25 at 12:46
feedback

in iOS 5.0.1 it works but you should append some arbitrary text BEFORE the link.

link|improve this answer
This URL: 'custom://magsw.com?x=movie.mp4' needed space before it in order to show as hyperlink. 'custom://movie.mp4' did not. – drfence May 13 at 15:55
feedback

Restarting your phone shell resolve this problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.