mfmailcomposeviewcontroller Questions

3

Solved

I'm using the MFMailComposeViewController to send an email from within an iPhone v3.0 application. I programmatically create the message body text and display it before showing the picker. At the ...

13

Solved

In a normal UIViewController in Swift, I use this code to send a mail. let mailComposeViewController = configuredMailComposeViewController() mailComposeViewController.navigationItem.leftBarButton...
Fontana asked 27/6, 2019 at 5:53

3

Solved

I found this source code from here and tried sending mail using it. I successfully got the 'MFMailComposeResultSent' Message, but actual mail is not sent. I don't understand why is not working. Als...
Anarchism asked 10/7, 2012 at 1:11

4

How can I change the title color of UINavigationBar in MFMailComposeViewController in iOS 12? This is what I am doing: import MessageUI extension MFMailComposeViewController { open override...
Intransigent asked 26/9, 2018 at 16:26

6

Solved

I use this block to send message to the contacts, after sending, the back button is there, but when I touch it nothing happens. Please help me out :) -(IBAction) InviteIt:(id) sender{ if ([MFMe...
Valaree asked 25/6, 2015 at 7:43

1

Currently, I haven't found a way to do this for iOS 12.0. I've tried setting bar tint like so. [mailController.navigationBar setTintColor:[UIColor whiteColor]]; Then, I tried setting the title ...
Foredoom asked 21/9, 2018 at 21:16

4

Solved

I have created a ContactUsViewController. In this controller the user will select a option from a pickerView and then type a message in a textView and press the Send Email button. When they pre...

3

Has anyone faced an issue where the MFMailcomposeviewcontroller send button is disabled/grayed out? The cancel button works perfectly fine. It seems like a new bug?
Impecunious asked 11/11, 2016 at 4:19

3

I'm trying to display MFMailComposeViewController in an app. if MFMailComposeViewController.canSendMail() { let mailComposeViewController = MFMailComposeViewController() mailComposeViewControll...
Alderman asked 1/11, 2019 at 9:32

7

I'm trying to implement MFMailComposeViewController in case of sending the emails from within my application. The problem is that after presenting MFMailComposeViewController it is not dismissing b...
Neddy asked 9/8, 2016 at 13:16

7

I do the standard functionality of sending messages with MFMailComposeViewController. My code: if MFMailComposeViewController.canSendMail() { let mail = MFMailComposeViewController() mail.mailCom...
Famulus asked 15/11, 2016 at 11:28

2

iOS uses standard (blue) tint color for all colored texts in MFMailComposeViewController. This is not good for me, as customer wants his company colors in app. How to change their color to orange? ...

3

Solved

On the same viewcontroller, we can send an email or a text message to send an information to a friend. The text message in app fully works. But for the email, the email app opens inside my app with...

5

I have been using the mail composer in a few of my apps for awhile now and as of recent the mailComposeDelegate no longer gets call.I wasn't sure if this was something to do with the new release of...
Doglike asked 4/10, 2016 at 22:10

3

Solved

I am developing an application,the requirement is to open email composer on a button click of UIAlertView. message which is in message body of email is copied from UITextView. i am using following...
Ithnan asked 8/10, 2013 at 4:24

9

Solved

I want to display the mail ID in my view such that clicking the mail ID should open the mail composer view. I want to display the button text as underlined to show it is a hyperlink and for the bu...

5

I want to send a mail from my application. I am doing my first steps with SWIFT and i have stuck at a point. I want to press a button and open up the mail. Can you please tell me how to do the butt...
Whiffet asked 25/4, 2016 at 10:37

1

Solved

Trying to use MFMailComposeViewController when click alert button. But when I click alert button, controller doesn't pop-up. The code is below. I used extension and I'm trying to call sendmail func...
Musset asked 23/1, 2018 at 18:17

3

Solved

I'm having some hard time trying to send an email from my app. I tried this code from iCodeBlog (http://icodeblog.com/2009/11/18/iphone-coding-tutorial-in-application-emailing/) -(void)sendEmail:...
Joannajoanne asked 26/11, 2010 at 13:17

6

I'm trying to change the text color for navigation buttons in a MFMailComposerViewController but it doesn't work like on iOS 6. In iOS 6 it worked with UIAppearance like this: // Navigation button...
Exhaustive asked 12/10, 2013 at 11:48

3

I'm trying to get emails that i select to send an email. But i dont know how to setToRecipients which users that i heve selected in the MFMailComposeViewController view. if ([MFMailComposeViewCont...
Piano asked 30/1, 2012 at 12:18

3

Solved

while sending mail, after tapping send or cancel button view controller stays there and app stalls. //swift 2.2 ; xcode 7.3.1 ; if( MFMailComposeViewController.canSendMail() ) { print("Can send...
Tackle asked 15/5, 2016 at 19:11

13

Solved

i have a feedback button in my ios 7 application with MFMailComposeViewController. After the user click this button the mailcomposer open but the statusbar changed to black. Have anybody a idea wha...
Sister asked 22/9, 2013 at 15:19

3

I'm a software developer, and I'm making an application for the email message and I have the following code: // Header file // importing the MessageUI framework #import <MessageUI/MessageUI....

2

Solved

I want to send mail from my custom iPhone app. I have used MFMailComposeViewController to send mail from my iphone in my previous app. Now, i don't want to show the MFMailComposeViewController to t...
Steverson asked 24/2, 2012 at 7:37

© 2022 - 2024 — McMap. All rights reserved.