I know how to call phone number (e.g.0615481129) from iPhone App using:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:0615481129"]];
But for phone numbers with * or #, the above line is not responding (no error message as well):
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:*770#"]];
please help me how to enable calling USSD Code (*770#) on iOS 7 in Xcode by using Objective-C