点击另一个按钮时隐藏 UIButton

发布于 2024-11-04 05:25:09 字数 50 浏览 1 评论 0原文

如何在点击另一个按钮或任何其他事件时隐藏 UIButton

How can I hide a UIButton on the tap of another button, or any other event?

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

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

发布评论

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

评论(5

标点 2024-11-11 05:25:17

为按钮创建一个插座以隐藏并将其连接到您的 xib 中:

IBOutlet UIButton *myButton;

现在为另一个按钮创建一个 IBAction 并将其连接到 xib 中:

-(IBAction)hideButton
{
    myButton.hidden = YES;
}

所以现在当您单击第二个按钮时,它将隐藏myButton

Create an outlet for the button to hide and connect it in your xib:

IBOutlet UIButton *myButton;

Now create an IBAction for the other button and connect it in the xib:

-(IBAction)hideButton
{
    myButton.hidden = YES;
}

So now when you click on the second button, it will hide myButton.

庆幸我还是我 2024-11-11 05:25:17

在按钮点击的 IBAction 中:

 [*yourbutton* setHidden:YES];

In your IBAction for the button tap:

 [*yourbutton* setHidden:YES];
夜无邪 2024-11-11 05:25:17
[self.btnReport setHidden:YES];
[self.btnReport setHidden:YES];
软的没边 2024-11-11 05:25:17
-(IBAction)hideButton
{
       yourbutton.hidden = YES;
}

应该可以做到这一点。

-(IBAction)hideButton
{
       yourbutton.hidden = YES;
}

That should do it.

尹雨沫 2024-11-11 05:25:17

在其他按钮的点击操作中执行此操作:

yourButton.hidden = YES;

Do this in your other button's tap action:

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