I want to open the native dialer application and allow the user to enter a phone number there. The reason I want this is because in my application the user needs to use USSD codes to make calls, but when using the code below nothing happens (nothing starts)
NSString *phoneNumber = [@"tel://" stringByAppendingString:number];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
I read here (StackOverflow) that barring calls from your application containing * and #. So I want to ask if there is any work around this restriction.
source
share