在MFMailComposeViewController中抑制“保存草稿”按钮
我在iphone应用程序中使用MFMailComposeViewController,它工作正常。
当按下“取消”按钮时,系统会提示一个带有“删除草稿”(红色),“保存草稿”(白色)和“取消”(黑色)选项的操作表。
我有两个问题:
这不可行,因为它的功能是默认的MFMailCompose类。所以你不能改变它。
您只能更改导航栏和按钮色调颜色
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
[[controller navigationBar] setTintColor:[UIColor colorWithRed:0.36 green:0.09 blue:0.39 alpha:1.00]];
链接地址: http://www.djcxy.com/p/94541.html
上一篇: Suppress "Save Draft" button in MFMailComposeViewController
下一篇: How to prevent crash on Cancel of MFMailComposeViewController?