缺少 UIBarButtonItem 的 TouchUp 事件的解决方法

发布于 2024-09-12 06:43:34 字数 242 浏览 8 评论 0原文

使用 UIButton 允许我捕获 TouchUpInside 和 TouchUpOutside 事件,以了解用户何时用手指释放按钮。

UIBarButtonItem 没有任何以这种方式使用的事件/通知。

有谁知道一个很好的解决方法来知道 UIBarButtonItem 何时被物理释放? 有没有办法在 UIToolBar 中使用具有与 UIBarButtonItem 相同的“设计”和行为的 UIButton?

谢谢!

using a UIButton allows me to catch TouchUpInside and TouchUpOutside events to know when the user releases the button with his finger.

UIBarButtonItem doesn't have any events/notifications to be used in this manner.

Does anyone know a nice workaround to know when a UIBarButtonItem is physically released?
Is there a way to use an UIButton in a UIToolBar with the same "design" and behavior like a UIBarButtonItem?

Thanks!

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

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

发布评论

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

评论(2

趁年轻赶紧闹 2024-09-19 06:43:34
    IBOutlet UIBarButtonItem *barButton;
....


- (void)viewDidLoad
{
  barButton.action = @selector(onBarButtonTap);

....

- (IBAction)onBarButtonTap
{
  NSLog( @"BarButton Taped" );
}
    IBOutlet UIBarButtonItem *barButton;
....


- (void)viewDidLoad
{
  barButton.action = @selector(onBarButtonTap);

....

- (IBAction)onBarButtonTap
{
  NSLog( @"BarButton Taped" );
}
怀里藏娇 2024-09-19 06:43:34

如果您使用的是 UIToolbar,则可以将 UIButton 拖到工具栏中。它将嵌入到 UIBarButtonItem 中,您可以将操作链接到嵌入的 UIButton

If you are using a UIToolbar you can drag a UIButton into the bar. It will get embedded inside a UIBarButtonItem and you can link actions to the embedded UIButton

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