In an application, this:

http://web.extebtion/projects/projectName/myaccount.php?1310625280.37+TE1PUFha-MDEyMzQ1Njc4OV85X3NpbXVsYXRvcg==+1310625280.37

(TYPE OF) URL is being tried to open by:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithString:http://web.extebtion/projects/projectName/myaccount.php?1310625280.37+TE1PUFha-MDEyMzQ1Njc4OV85X3NpbXVsYXRvcg==+1310625280.37]]];  

line of code, but, this line doesn't open the URL in iPhone browser. But if == is being removed from the URL, all problem get solved.

Now the question is, How to check if the browser have opened a URL or not?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I think you might want to just specify the @"<string>", i.e.:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://web.extebtion/projects/projectName/myaccount.php?1310625280.37+TE1PUFha-MDEyMzQ1Njc4OV85X3NpbXVsYXRvcg==+1310625280.37"]];

You'll know the browser opened the URL, because Safari will pop into the foreground and load the URL.

link|improve this answer
Well it doesn't actually helped, but thank you for the response. :) – rptwsthi Jul 21 '11 at 6:30
feedback

Your Answer

 
or
required, but never shown

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