I want to dial a phone number like "##8004664411" in IPhone.
If I dial the number "8004664411",it works.But if the number contains the symbol"##",it doesn't work.
Here is the code that I am using which is not working:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://##8004664411"]];
Is the escape character wrong?