1

In iOS i want to call calling dial pad when I am tried to a normal number and using + and - symbols then it's working good, but when I am trying to add * and # Tag then call dial is not open. Please give me solution how can i do this

Here is My CODE

NSString *phoneNumber = [@"tel://" stringByAppendingString:@"*123*12335553#"];
   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
Cœur
  • 37,241
  • 25
  • 195
  • 267

1 Answers1

-1

Please replace your character : [<your string> stringByReplacingOccurrencesOfString:@"*" withString:@""]; from your string.

Sharda Prasad
  • 111
  • 10