Steve
Steve

Reputation: 97

Sending SMS, image and video from imessage

With imessage, is there any API or service provided by Apple that can be used to send SMS, image & video from within an app?

Upvotes: 3

Views: 1729

Answers (3)

rckoenes
rckoenes

Reputation: 69469

No you can't directly use iMessage, you can use the MFMessageComposeViewController to send a SMS. If the system then detects if the other user supports iMessage the SMS will be send via iMessage.

You can't force a message to send via iMessages.

Also there is no support for sending images or videos in a message via the MFMessageComposeViewController. Because MFMessageComposeViewControlleronly support SMS which does not support images or videos.

Upvotes: 4

user1773493
user1773493

Reputation:

Use MFMessageComposeViewController to send sms from app

Upvotes: 0

Saad
Saad

Reputation: 8947

Use MessageUI framework and use

MFMessageComposerDelegate for SMS and

MFMailCoposerDelegate for email.

all it's provided by apple

Upvotes: 0

Related Questions