iphone email link not selected correctly

Posted by mongeta on Stack Overflow See other posts from Stack Overflow or by mongeta
Published on 2010-03-04T16:51:14Z Indexed on 2010/05/17 2:10 UTC
Read the original article Hit count: 305

Filed under:
|
|

Hello,

I'm creating a link to open my App and pass some data in the URL.

When I add the query parameter ? my link get broken.

NSData *fileData = [NSData dataWithContentsOfFile:dataFilePath];
NSString *encodedString = [GTMBase64 stringByWebSafeEncodingData:fileData padded:YES];
NSString *urlString = [NSString stringWithFormat:@"myApp://localhost/backup?%@", 
encodedString]; 

the link is quite long, but also a shorter one doesn't work:

myApp://localhost/backup?PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48bG9jPjxpbmdyZWRpZW50VHlwZS

and when the e-mail appears in the iPhone, only this is underlined and act as a link:

myApp://localhost/

Adding the query as NeilInglis suggest it doesn't work also, the link is broken at same place.

NSString *urlString = [NSString stringWithFormat:@"myApp://localhost/backup?query=%@",
encodedString]; 

The Html is ON or OFF, it doesn't affect.

If I enocode the URL it also doesn't work ...

Don't know what I can try next ...

any ideas ?

thanks ...

regards,

r.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about mail