MFMailCompose 自定义按钮

发布于 2024-12-24 03:37:07 字数 442 浏览 0 评论 0原文

        UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithCustomView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cancel.png"]]];
button.target = picker.navigationBar.topItem.leftBarButtonItem ;
button.action = picker.navigationBar.topItem.leftBarButtonItem.action;
picker.navigationBar.topItem.leftBarButtonItem=button;

大家好,我正在尝试更改邮件编辑器按钮的样式。上面的代码确实改变了按钮的外观,但是操作似乎丢失了。我有什么想法可以克服这个问题吗?谢谢。

        UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithCustomView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cancel.png"]]];
button.target = picker.navigationBar.topItem.leftBarButtonItem ;
button.action = picker.navigationBar.topItem.leftBarButtonItem.action;
picker.navigationBar.topItem.leftBarButtonItem=button;

Hi folks, I'm trying to change the style of the buttons of the mail composer. The above code does change the look of the button, however the action seems to be lost. Any ideas how I can overcome this? Thanks.

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

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

发布评论

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

评论(1

浅浅淡淡 2024-12-31 03:37:07

解决这个问题相当简单。您向该按钮添加一个方法,然后定义该方法中应该发生什么。因此,首先,在声明按钮之后放置此行。

[button addTarget:self action:@selector(aButtonClicked:) forControlEvents:UIControlEventTouchUpInside];

这将添加一个在单击/触摸按钮时调用的方法。然后,稍后在代码中创建按钮将调用的实际方法。

-(void)aButtonClicked:(id)sendr{
//Do stuff here

}

希望这有帮助:)

The fix for this is fairly simple. You add a method to this button and then define what should happen in the method. So first, put this line after you declare your button.

[button addTarget:self action:@selector(aButtonClicked:) forControlEvents:UIControlEventTouchUpInside];

That will add a method to be called when the button is clicked/touched. Then, later in the code, you create the actual method that the button will be calling.

-(void)aButtonClicked:(id)sendr{
//Do stuff here

}

Hope this helped :)

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