我需要能够UIBarButtonItem
更改MFMailComposeViewController
.
更改 customView 属性会强制它不再运行。
示例代码:
MFMailComposeViewController* vc = [[MFMailComposeViewController alloc] init];
vc.mailComposeDelegate = self;
//This fails:
[self.navigationController presentModalViewController:vc animated:TRUE];
self.topViewController.navigationItem.rightBarButtonItem.customView =
[self makeMyView];
也通过覆盖我的方法的属性(目标,动作)。这也不再被称为。
有没有办法覆盖这个按钮上的 customView?
我支持 iOS4,否则我不会遇到这个麻烦,而且我目前没有时间集成完整的 SMTP 客户端,例如SKPSMTPMessage
.