Questions tagged [mfmessagecomposeviewcontroller]

For questions about the MFMessageComposeViewController class in iOS, which allows composing and sending text messages.

The MFMessageComposeViewController class provides a standard system user interface for composing text messages. Use this class to configure the initial recipients and body of the message, if desired, and to configure a delegate object to respond to the final result of the user’s action—whether they chose to cancel or send the message. After configuring initial values, present the view controller modally using the presentModalViewController:animated: method. When done, dismiss it using the dismissModalViewControllerAnimated: method.

Reference: https://developer.apple.com/library/prerelease/ios/documentation/MessageUI/Reference/MFMessageComposeViewController_class/index.html

199 questions
0
votes
1 answer

Schedule sms programmatically with out any user interaction in iPhone

I am already aware of the fact that there is an option for us to send sms programmatically i.e. using MFMessageComposeViewController, but is it possible to schedule the message to the specified recipient. I am currently using the following code to…
Eshwar Chaitanya
  • 942
  • 2
  • 13
  • 34
0
votes
1 answer

how to popup MFMessageComposeViewController object on any view controller class from NSobject class iOS

how to open MFmessageComposeviewcontroller on any view controller (topviewcontroller) from NSObject class method excute in background. This is my code which popup massage controller without error MFMessageComposeViewController *controller =…
0
votes
1 answer

can we change MFmessagecomposeViewcontroller navigtion title font

I am using mfmessagecomposeviewcontroller in my app for sending sms. My problem is that when view present then the navigation title and button's title font not same to the appliction font. I want to change the font of this title. I have so much try…
Bilal hussain
  • 105
  • 1
  • 3
  • 9
0
votes
2 answers

iOS Messaging in app Not working Properly

I am Working on an RSS app where it needs to send the url of the article through a message. I have this code so far, MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init] ;{ …
Steve
  • 205
  • 3
  • 14
0
votes
2 answers

ios : sms message composer not showing

I have a UITableViewController presenting a list of contacts, when the user selects a row, it'll show a UIActionSheet to ask the user an action (call, send sms...). The user selects an action, and that first UIActionSheet will show another…
0
votes
1 answer

change url to nsstring

I am trying to put a movie into the body of a text message from inside my app. I am using MFMessageComposeViewController to bring up the message view. I can put text into the body but I would like to put a movie. like Apple does when you select a…
user1114881
  • 731
  • 1
  • 12
  • 25
0
votes
1 answer

When sending SMS more than once with iOS 4.3 MFMessageComposeViewController always has data of the first message

I'm using MFMessageComposeViewController to send SMS from iPhone devices. This works correctly with iOS 5 and later. But in iOS 4.3 I can send SMS only once correctly. All next attempts present me MFMessageComposeViewController with data from first…
Misha
  • 5,260
  • 6
  • 35
  • 63
0
votes
2 answers

How to change MFMessageComposeViewController's Contact picker's title color and text?

I'm using MFMessageComposeViewController in my application to present the sending sms feature within the app using the following code. MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc]…
0
votes
0 answers

how can I display MFMessageComposeViewController in the main window?

I have two navigation controllers that are nested together, the first nav is in the front and the other one is in the background. So to view the other view I have sliding animation like facebook app. But my problem is when I call to show message UI…
0
votes
2 answers

Change language of MessageUI forms and ActionSheet

I'm currently using the MessageUI framework for sending SMS and Emails, but my app is in Spanish, while the MessageUI interface is in english, how can I change the button texts of the MessageUI?
8vius
  • 5,786
  • 14
  • 74
  • 136
0
votes
2 answers

UITextField cursor is gone after sending SMS with MFMessageComposeViewController

If user sends SMS in my app using MFMessageComposeViewController, cursors of UITextFields are gone. Is there a way to prevent this or bring the cursor back at least?
Behlül
  • 3,412
  • 2
  • 29
  • 46
0
votes
0 answers

MFMessageComposeViewController init crashes app when run through iphone

the following code: -(void)sendSMS { NSUserDefaults *standardUserDefaults = [NSUserDefaults standardUserDefaults]; if ([MFMessageComposeViewController canSendText]) { self.msgController = [[MFMessageComposeViewController…
HillInHarwich
  • 441
  • 6
  • 25
0
votes
1 answer

iOS – Subclassing MFMessageComposeViewController to add extra functionality

I have subclassed RMMessageComposeViewController : MFMessageComposeViewController. The extra functionality that I'm aiming for is for the MFMessageComposeViewController to be able by itself to present a new message compose controller (over…
Peter Warbo
  • 11,136
  • 14
  • 98
  • 193
0
votes
4 answers

Send sms without user Interaction iPhone

I have seen an application which name is "Glympse". In this application sms is sending without user interaction which is not possible for iPhone. I have show in my device log that "Glympse" application call mfmessagecontroller. Jul 10 16:24:13…
ios
  • 552
  • 5
  • 22
0
votes
1 answer

image attachment from camera or photo library MFmessage/MailcomposeViewController

Am wondering if i can attach an image to my SMSComposerSheet (like the message application in the iPhone does). I've already implemented image picking (from library and camera) So may be i need some thing to add in the displaySMSComposerSheet method…