views:

677

answers:

2

How to send ussd request through programming on iPhone OS

For example: *100#

A: 
"tel:*100#"

See the Apple URL Scheme Reference

slf
OpenURL with "tel:*100#" don't work
Pavel Kurta
+1  A: 

CTCallDialWithID(@"*100#", -1);

and link with CoreTelephony.

Farcaller
Too bad, CoreTelephony is a private API and will possibly cause Apple to reject an app. But I think it's OK with jailbreak or enterprise.
iwat