Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to send mail trough Xcode.
Here is my code
Code

Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
    if (mailClass != nil)
    {

         BOOL var=[mailClass canSendMail];

         NSLog(@"--%d",var);

        if(var==YES)
       {

         // lU=[[LatestUploads alloc] init];

         // self.navigationController=[[UINavigationController  alloc]initWithRootViewController:lU];

       MFMailComposeViewController *controller=[MFMailComposeViewController new];
        controller.mailComposeDelegate=self;

        NSMutableArray *recepients=[[NSMutableArray alloc] init];
        [recepients addObject:username];


        NSString *messageBody=[NSString stringWithFormat:@"Name:%@\nBillType:%@\nAmount:%@\nCurreny:%@\nDate:%@\nDescription:%@",txtIname.text,txtIbilltype.text,txtIamount.text,txtIcurrency.text,txtIdate.text,txtIdescription.text];


        [controller setSubject:@"Image Details"];


        [controller setMessageBody:messageBody isHTML:NO];

        NSString *imageurl=[imageDetailsDictionary objectForKey:@"ImgMain"];


        NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:imageurl]];


        [controller addAttachmentData:data mimeType:@"image/jpeg" fileName:@"Image"];

        [controller setToRecipients:recepients];

//           
//          UINavigationController *navControl=[[UINavigationController alloc] initWithRootViewController:controller];
//           
//           controller.navigationBar.hidden=YES;
//           controller.navigationItem.hidesBackButton=YES;

//        [self.navigationController presentViewController:controller animated:YES completion:nil];

           double delayInSeconds = 0.1;
           dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
           dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
               [self  presentModalViewController:controller animated:YES];
           });

         //[self presentModalViewController:controller animated:YES];

        }

        else
          {

              [alert okAlertMessage:@"Alert" setMessage:@"Your Device is not SetUp for Email!"];
          }


    }

I am also getting this error_serviceViewControllerReady:error: Error Domain=_UIViewServiceInterfaceErrorDomain Code=1 "The operation couldn’t be completed. (_UIViewServiceInterfaceErrorDomain error 1.)"

Can somebody help me out!!

share|improve this question
Can any body answer??? – Aditya Feb 11 at 6:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.