0

これは、アプリ内メールを表示するために使用しているコードです。

MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];
    mailer.mailComposeDelegate = self;
    [mailer setSubject:@"Look at this Job I found!"];
    NSString *emailBody = [NSString stringWithFormat:@"Look at this Job I found:\n%@ (%@)\nSalary Rage: %@-%@\n Located in %@.\n%@\n%@.\n", _positionTitleLabel.text, _organizationNameLabel.text,_minSalaryLabel.text,_maxSalaryLabel.text,_locationLabel.text,_startDateLabel.text,jobsy.url];
    [mailer setMessageBody:emailBody isHTML:NO];
    [self presentViewController:mailer animated:YES completion:nil];

これは結果/問題です: http://i.imgur.com/mwWzVxj.png

4

0 に答える 0