添加电子邮件客户端发送按钮作为右侧栏按钮项

时间:2011-02-07 12:27:55

标签: iphone cocoa-touch iphone-sdk-3.0 ios4 uibarbuttonitem

我在论坛中搜索过,但可以找到一种方法来做到这一点。

有没有办法在不使用图像视图的情况下添加默认电子邮件客户端发送按钮?

谢谢

1 个答案:

答案 0 :(得分:2)

使用UIBarButtonSystemItemAction

UIBarButtonItem *sendMailButton = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(btnActionPressed)] autorelease];

不要忘记:

- (IBAction)btnActionPressed {
// code
}
相关问题