2010-03-22 185 views
0

可能重複:
How to programmatically send SMS on the iPhone?如何發送短信並在iPhone sdk中接收短信?

我想在我的應用程序來實現短信功能。有沒有辦法做到這一點,或任何文件來實現此功能?任何人都可以提供這樣的示例代碼?

+1

嘿,夥計們,請給我的答覆。 – monish 2010-03-22 06:09:01

+9

我會避免在將來使用「請給我一個及時的答覆」 – 2010-03-22 06:53:35

+1

這是這些問題的重複:http://stackoverflow.com/questions/10848/how-to-programmatically-send-sms-on-the- iphone和http://stackoverflow.com/questions/387934/iphone-how-to-programmatically-respond-to-sms-messages – 2010-03-22 14:32:19

回答

1

,你可以使用類似

NSString *message = [[NSString alloc] initWithFormat:@"sms:%@",phonenostring]; 
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:message ]]; 
+1

然後我怎麼才能得到短信主體輸入文字? – monish 2010-03-22 06:11:26

+0

蘋果文件沒有指定任何東西......我不這麼認爲蘋果支持...... – 2010-03-22 06:26:13