我可以在MFMailComposer上为发送和取消按钮设置图像

时间:2012-01-30 05:21:30

标签: iphone cocoa-touch

我知道可以将MFMailComposer上的导航栏项目图像设置为我的导航栏图像(红色看到的是我的图像)。我想使用自定义图像作为按钮的背景。

enter image description here

这是我的应用程序要求..

enter image description here

1 个答案:

答案 0 :(得分:0)

在分配MFMailComposeViewController时,请执行以下操作。

    MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init];
    mailComposer.navigationBar.tintColor = [UIColor colorWithRed:182/255.0 green:39.0/255 blue:51.0/255 alpha:0.9];
    mailComposer.mailComposeDelegate = self;

来自Apple doc reference

  

重要事项邮件撰写界面本身不可自定义,您的应用程序不得修改。此外,在显示界面后,您的应用程序不允许对电子邮件内容进行进一步更改。用户仍然可以使用界面编辑内容,但忽略程序化更改。因此,您必须在呈现界面之前设置内容字段的值。