我正在開發一個簡單的應用程序,它必須從應用程序本身發送一條SMS消息,而不是啓動本地文本應用程序。如何在不啓動文本應用程序的情況下發送短信?
這是我現在的動作。我應該改變什麼來實現我想要的功能?
-(IBAction)startButtonPressed
{
NSString *phoneNumber = @"13136296693";
NSString *url = [NSString stringWithFormat: @"sms:%@",phoneNumber];
NSLog(@"Send SMS to: %@ ", url);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
謝謝!
托馬斯
謝謝!我現在檢查一下。 – Thomas 2010-04-15 14:22:00