点击另一个按钮时隐藏 UIButton
如何在点击另一个按钮或任何其他事件时隐藏 UIButton
?
How can I hide a UIButton
on the tap of another button, or any other event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在点击另一个按钮或任何其他事件时隐藏 UIButton
?
How can I hide a UIButton
on the tap of another button, or any other event?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
为按钮创建一个插座以隐藏并将其连接到您的 xib 中:
现在为另一个按钮创建一个
IBAction
并将其连接到 xib 中:所以现在当您单击第二个按钮时,它将隐藏
myButton
。Create an outlet for the button to hide and connect it in your xib:
Now create an
IBAction
for the other button and connect it in the xib:So now when you click on the second button, it will hide
myButton
.在按钮点击的
IBAction
中:In your
IBAction
for the button tap:应该可以做到这一点。
That should do it.
在其他按钮的点击操作中执行此操作:
Do this in your other button's tap action: