Tagged Questions
1
vote
1answer
23 views
Memory Leaks while using MFMailComposer
I am trying to send a CSV file through MfMail Composer.Everything works fine but there are lot leaks while using Instruments.I am not able trace out where I went wrong.Here is my code.
-(NSData ...
0
votes
1answer
27 views
MFMailComposeViewController crash when pressing “Delete Draft”
I have a button that call a MFMailComposeViewController. Sometimes, when I click "delete draft", the app crashes but sometimes it correctly dismiss the view. I can' understand why. Here is my code:
- ...
0
votes
0answers
52 views
UI toolbar button breaking mail composer, but works fine with regular button?
TL;DR: mailing method works fine with regular buttons, but when I try and call it from a toolbar button, it only inserts the subject and none of the other content.
I am very very new to Obj-C, X-Code ...
0
votes
2answers
83 views
In app email will send email but won't dismiss in Xcode
I have read other threads and tried multiple variables.
I have an app that attaches a screenshot to an in-app email.
When I press the send or cancel button the email doesn't dismiss.
Not sure if I ...
0
votes
1answer
77 views
MFMailComposeViewController get email body
I can detect sending in the MFMailComposeViewController's delegate method
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result ...
0
votes
0answers
323 views
Unbalanced calls to begin/end appearance transitions for <UINavigationController:
I am trying to send mail trough Xcode.
Here is my code
Code
Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
if (mailClass != nil)
{
BOOL var=[mailClass ...
0
votes
1answer
98 views
Attaching .txt to MFMailComposeViewController
I have a .txt file stored in Documents Folder and I want to send it by MFMailComposeViewController with next code in the body of -sendEmail method:
NSData *txtData = [NSData ...
0
votes
2answers
137 views
MFMailComposeViewController few attachments
I'm successfully sending an email with attached UIImage from my app, but is it possible to attach more than one image with MFMailComposeViewController ?
0
votes
1answer
71 views
MFMailComposeViewController.h Broken
After successfully implementing the MFMailComposeViewController in my app, run it in the simulator and my iPhone, where it still works fine, it just crashed.
I get 5 MFMailComposeViewController.h ...
0
votes
1answer
97 views
xcode - Design / Redesign MailController / MFMailComposeViewController
Is it possible to Redesign the MFMailComposeViewController?
How?
The App Dropbox can do it.
Picture: http://jonathangurebo.tumblr.com/post/40436277822
Can I change the "MessageUI.framework"?
0
votes
1answer
104 views
How to only allow one Recipients in Mail in iOS
I am creating an Contact Us button which would allow the User to contact our Support Team by Email(I am using iOS 6). But I want the Mail Composer only email our support team email and not allow the ...
1
vote
3answers
753 views
MFMailComposeViewController model does not display
I am presenting MFMailComposeViewController in my app for Email.
But the view is not getting disply , only upper SEND and CANCEL buttons getting displayed.
This is the screen shot of view that is ...
0
votes
1answer
149 views
Cancel button does not dismiss ComposeMail window in iOS simulator
My implementation is pretty simple:
In the .h file, I'm implementing MFMailComposeViewControllerDelegate
And in the .m file, I have the following bit of code:
-(void)MailCurrentViewAsAttachment
{ ...
1
vote
4answers
301 views
Difference between mailComposeDelegate and simple Delegate property
Hi i am getting confuse on MFMailComposeViewController delegate property, when i set mailer.mailComposeDelegate app crash just after call [self presentModalViewController:mailer animated:YES]; and ...
0
votes
1answer
184 views
How to Open Clickable Url in MFMailComposer
I am using the Following piece of code
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
...
0
votes
2answers
407 views
'id<MFMailComposeViewControllerDelegate>'from incompatible type 'ViewController *const_strong'
In my app I have a button that when pressed opens a email whit filled out "to" and "subject", but I get this warning on this line of code:
mc.mailComposeDelegate = self;
The warning says:
...
0
votes
2answers
164 views
Show Mail Composer When Cell of Table View Is Selected
I am trying to get my table view to present a mailcomposerviewcontroller when a cell is selected. I have tried using:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
1
vote
4answers
279 views
Unable to send email through my app
I am new to iphone development. I am building an app through which i can send the email.I am using the following code
- (IBAction)btnsendPressAction:(id)sender {
if([MFMailComposeViewController ...
1
vote
2answers
500 views
How to send mail automatically in iphone?
I have used the following to display mailViewController
-(IBAction)sendMailbuttonTapped {
if([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *mailCont = ...
0
votes
2answers
162 views
unable to load the mail client in iOS
I noticed that I am using the mail functionality several time so I decided to make an independent Class for functions that get repeated several time instead of copy-pasting the code several times
the ...
0
votes
1answer
255 views
iPhone Mail Composer Appearance Change allowed?
I seem to remember sometime back reading that changing the appearance of the mail composer view controller was not allowed. However, I also just tried for the first time to implement changes to my ...
0
votes
1answer
115 views
change how prefilled email address shows (XCode)
In my app i am pre-filling the email address when the user wants to email someone. i do this like this:
NSArray *toRecipients = [NSArray arrayWithObject:@"sales@microsmith.com"];
NSString *subjectStr ...
0
votes
2answers
376 views
Save PDF then send in email
I am trying to save a pdf from a url and then send it in an email. The sender seems to have it but the receiver does not get it.
When I do a NSLog of the NSString file I get ...
0
votes
1answer
773 views
why is my sending mail not working from MFMailComposeViewController?
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.
Also, ...
7
votes
1answer
912 views
dismissModalViewController Hides the parent view behind status bar
I have a very strange issue here. I am using a present modal view controller to display my MFMailComposer ViewController on top of a ViewController which is placed with in a Navigation Bar.
[self ...
0
votes
1answer
541 views
iPhone to use MFMailComposer to send email from app?
In my application i am able to send email using MFMailComposer.
suppose if i have gmail account in my iPhone and i am using my app to send the email , i am able to send email to others
but suppose if ...
0
votes
1answer
1k views
Email CSV file with MFMailComposer
I would like to create a file using a NSString (already made) with a .csv extension then email it using the UIMessage framework. So can someone show me the code to create a file (with a .csv ...
0
votes
1answer
141 views
Attached NSMutableArray data in E-mail Body?
I am New To Iphone programming.my Array store UIlabel along with properties.For Exp,Text,TextColor,background color etc.Now i want to send all the array data in E-mail body.
here is my code.
...
0
votes
1answer
392 views
NSMutableArray Data Attachement With E-mail Body?
My NSMutableArray data are in NSData formate.I am trying to attached NSMutableArray data to E-mail body.Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults ...
1
vote
1answer
177 views
How can I Attached NSMutableArray Data With E-mail Body?
I am trying to attached NSMutableArray data to E-mail body. Here is my NSMutableArray code:
NSUserDefaults *defaults1 = [NSUserDefaults standardUserDefaults];
NSString *msg1 = [defaults1 ...
0
votes
1answer
250 views
Convert Bytes Into UIImage
When I convert my NSMutableArray Into NSdata,I get NSMutableArray data in bytes.
Now I want To convert it into UIImage, because I want to send My Array data by Email, but I get null in UIImage.
Here ...
0
votes
2answers
359 views
MFMailComposeViewController : gives EXC-BAD-EXCESS when dismiss it from parent view
I have UINavigationController/UITabBarController base application and all is working fine but MFMailComposeViewController driving me crazy. I have go through almost every post of stack overflow about ...
0
votes
3answers
290 views
MFMessageComposeController Issue
i'm having a problem with my MFMessageComposeController. So, in my app every time you click on a button, a UIActionSheet appears and then you have to select if you want to make a call or send a ...
3
votes
2answers
1k views
Line Break in Localizable.strings for MFMailComposeViewController
How can I add line breaks in my language file for use in MFMailComposeViewController? The \n doesent work for me. A break with a normal klick on return key has the same result, no line breaks!
My ...
1
vote
2answers
1k views
Links inside email message body
I need to modify an existing project. In this project there are several (many) places where the app sends an email with preset text within it. The used function is
[[UIApplication sharedApplication] ...
3
votes
2answers
1k views
iOS: MFMailComposeViewController not working on model
Having trouble with the MFMessageComposeViewController.
The situation goes like this:
I am creating a model that will implement the MFMessageComposeViewController instead of doing it in the ...
0
votes
1answer
326 views
Xcode Random Image Button, and email button
I'm trying to create an app that creates a random image button, and the code works. when my app generates an image, I'd like to create a button from which i can send an email with the screenshot ...
2
votes
2answers
2k views
How to setToRecipients with MFMailComposeViewController
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 ...
1
vote
2answers
995 views
Add photo to MFMailComposeViewDelegate ( Xcode 4.2, iOS 5, ARC, LLDB, Storyboard, Universal App )
I have searched around the internet and stack and have not quite found the right answer for my conditions. ( Xcode 4.2, iOS 5, ARC, LLDB, Storyboard, Universal App )
Looking for the method to allow ...
1
vote
0answers
161 views
Centering Picture In MFMailComposeViewController (iOS)
Is it possible to center an image when attaching it to the MFMailComposeViewController in XCode? Here's the code I'm using:
NSString *path = [[NSBundle mainBundle] pathForResource:@"millersicon" ...
1
vote
2answers
330 views
how to send email using UIbarbuttonitem without using MFMailComposerViewController
I want to send email using rightBarButtonItem without using MFMailComposerViewController.
Is It possible to send email using barButtonItem?
Any Idea how to do this?
thanx in advance.
4
votes
1answer
3k views
Adding multiple strings to a string
How do I add multiple strings to a string ?
Whats the easiest way to do that ?
If I don't want to create a new line of code every time I add something to a string, I'd like to do something like that :
...
0
votes
1answer
1k views
Best way to populate e-mail body from uitableview
Ok let me try to make it a better question.
I have a tableViewController in my app containing some info that the user would like to email someone with that data from the tableview.
I could retain an ...
0
votes
1answer
165 views
xcode: How can I find the maximum attachement size for the email service provider the sender uses?
I'm working on an app in xcode which allows users to choose documents to be sent by mail, using MFMailComposeViewController. The problem is that the app crashes when the total size of the documents ...
0
votes
4answers
954 views
popToRootViewControllerAnimated gives “EXC_BAD_ACCESS” (but can't get it with NSZombie)
I got navigation based application with multiple views. When i got to the last view, the application will send a email (using the MailComposer). After that to would like to return to the home view.
...
0
votes
1answer
137 views
How to use Xcode to detect double release of object?
I've got a MFMailComposeViewController object that I'm releasing in my Email button's callback, simply because I created it, and I think my doing so is intermittently but not always crashing my app.
...
0
votes
1answer
211 views
i want to open from my aap. “settings >> mail >> add account ” (the add account page) is it possible.?
In my app if user has not configured their E-mail account in i phone, then when the user opens the application, it will ask for e-mail configuration (means the app redirects to "settings >> mail >> ...
0
votes
1answer
2k views
iOS 5.0: MFMailComposeViewController Warning
Since I updated XCode for the new iOS 5.0 i get a warning in my MailComposer function.
MFMailComposeViewController *pickerZap = [[MFMailComposeViewController alloc] init];
...
0
votes
1answer
2k views
UIActionSheet to open up Mail Application iPhone
This issue is something which has me stumped, so hopefully someone can help. I have an UIActionSheet on a view which has three options in. One which takes my user to a new view, one to share via ...
0
votes
1answer
501 views
How to send an e-mail without using the MFMailComposeViewcontroller
I want to know if it's possible to send an e-mail automatically by using the uibutton, instead of having to use the MFMailComposeViewController? I basically want to send an e-mail without letting the ...





