0
我想在我的應用程序中實現SMS功能,其中包括從一個用戶發送消息到另一個用戶。iOS APNs功能實現
我想要做的是創建一條消息,並通過HTTP請求從移動設備發送到服務器。服務器將收到該消息,它將知道要發送給哪個用戶。然後,服務器將使用APN將消息推送回目標用戶。
我做對了嗎?還是有更通用/標準的方式來實施它?
在此先感謝。
我想在我的應用程序中實現SMS功能,其中包括從一個用戶發送消息到另一個用戶。iOS APNs功能實現
我想要做的是創建一條消息,並通過HTTP請求從移動設備發送到服務器。服務器將收到該消息,它將知道要發送給哪個用戶。然後,服務器將使用APN將消息推送回目標用戶。
我做對了嗎?還是有更通用/標準的方式來實施它?
在此先感謝。
發送短信,示例代碼:
MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init];
if([MFMessageComposeViewController canSendText])
{
controller.body = @"SMS message here";
controller.recipients = [NSArray arrayWithObjects:@"1(234)567-8910", nil];
controller.messageComposeDelegate = self;
[self presentModalViewController:controller animated:YES];
}
也看到doc
這實際上如何回答用戶問題? – Popeye
https://developer.apple.com/library/ios/documentation/MessageUI/Reference/MFMessageComposeViewController_class/Reference/Reference。 html – danh