在格式字符串中添加回车符

发布于 2024-11-11 03:01:35 字数 841 浏览 0 评论 0原文

我试图在电子邮件正文中的每个字符串后获取回车符。我正在画一个空白。

这是我目前正在使用的代码:

- (IBAction)mailButtonPressed {
    MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
    controller.mailComposeDelegate = self;
    [controller setSubject:@"Pressed Data..."];

    appDelegate= (TemplateIponeAppDelegate *)[UIApplication sharedApplication].delegate;

    NSString *MessageBody=[NSString stringWithFormat:@" Hi: %@ F Result: %d , R Result: %d , B Result: %d,  P Result: %d......... total Reults: %d   total time :%@",clientName.text, appDelegate.FCount,appDelegate.RCount,appDelegate.BCount,appDelegate.PCount,appDelegate.TotalPressed,appDelegate.time];

    [controller setMessageBody:MessageBody isHTML:NO];
    [self presentModalViewController:controller animated:YES];
    [controller release];
}

I am trying to get Carriage returns after each string in my email body. I am drawing a blank.

This is the code I’m using at the moment:

- (IBAction)mailButtonPressed {
    MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
    controller.mailComposeDelegate = self;
    [controller setSubject:@"Pressed Data..."];

    appDelegate= (TemplateIponeAppDelegate *)[UIApplication sharedApplication].delegate;

    NSString *MessageBody=[NSString stringWithFormat:@" Hi: %@ F Result: %d , R Result: %d , B Result: %d,  P Result: %d......... total Reults: %d   total time :%@",clientName.text, appDelegate.FCount,appDelegate.RCount,appDelegate.BCount,appDelegate.PCount,appDelegate.TotalPressed,appDelegate.time];

    [controller setMessageBody:MessageBody isHTML:NO];
    [self presentModalViewController:controller animated:YES];
    [controller release];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过期情话 2024-11-18 03:01:35

在格式字符串中需要换行的位置添加 \n

Add a \n in your format string wherever you want a new line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文