I hope to call with * character. ex> *711313.
Currently, I'm using this code:
NSString *str = [NSString stringWithFormat:@"tel:%@", tmp];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]];
I tested two cases:
tmp = @"719929292"; //this is ok. make call.
tmp = @"*7128282"; //app no reaction. not to call.
How can I call with *(star character)?