mfmessagecomposeviewcontroller Questions
3
I am sharing an audio recording via the UIActivityViewController. When the audio file shares via email or iMessage, it shows the underlying name of the audio file without any apparent way of changi...
Thorp asked 13/11, 2013 at 16:50
4
Solved
Below code works on iOS version 9.x or less, for some reason this does not work if iOS 10
if([MFMessageComposeViewController canSendText])
{
controller.body = message;
NSString *tel = pContact...
Balcom asked 12/9, 2016 at 15:31
6
I want to send message with image data. So I used MFMessageComposeViewController.
But that controller provide only SMS service. So I used UIPasteBoard attached an image data.
But It doesn't work, e...
Fourteenth asked 26/8, 2010 at 17:8
2
Solved
I want to attach an image to a MMS, on iOS7. I wrote following code:
MFMessageComposeViewController *messageController = [[MFMessageComposeViewController alloc] init];
messageController.messageC...
Imprecise asked 3/10, 2013 at 22:56
4
Solved
Our app only supports portrait mode. Presenting a UIActivityViewController works.
However, sharing with the "Message" option crashes the app:
*** Terminating app due to uncaught exception 'UIAp...
Straka asked 20/12, 2016 at 1:56
1
Solved
I'm trying to sent a text message and have controller set up like so, but I get an error message 'NSInvalidArgumentException', reason: 'Application tried to present a nil modal view controller on t...
Thyself asked 6/2, 2016 at 19:25
1
Solved
I develop an IOS app with a feature, which sends SMS with a source code generated text to source code generated telephone recipients.
It works great for several months for ~hundred user, but now I...
Rules asked 13/11, 2013 at 10:15
2
Solved
The code below works fine in iOS 5/6. In iOS 7, it looks like this (red oval for emphasis).
Code:
if ([MFMessageComposeViewController canSendText]) {
self.messageComposer = [MFMessageComposeVi...
Fortunna asked 30/9, 2013 at 23:33
3
Solved
I've an app for sending email and text messages.
The problem that i'm having is that the loading of the MFMessageComposeViewController much slower on iOS 7 than it was on prior iOS and it becomes ...
Transcendent asked 26/9, 2013 at 11:37
2
I have an app in which the user can select an image and send it to a friend by attaching the image to an instance of MFMessageComposeViewController. After pressing send in the MFMCVC view, things w...
Silvern asked 19/10, 2013 at 0:22
1
Solved
Currently, I am developing an App in which I have to send photo/video via IMessage. Photo
sending code is proper working but when I am sending video via IMessage I am only getting
a icon make in ...
Unpen asked 24/12, 2012 at 9:50
1
Solved
Hi i'm using MFMessageComposeViewController to send sms in my iOS project my code is like below,
MFMessageComposeViewController *message = [[MFMessageComposeViewController alloc] init];
message....
Sarsaparilla asked 8/6, 2012 at 14:48
1
© 2022 - 2024 — McMap. All rights reserved.