gpt4 book ai didi

iPhone UIButton 的作用类似于 UISwitch

转载 作者:行者123 更新时间:2023-12-03 19:33:30 26 4
gpt4 key购买 nike

我正在尝试为我的应用程序创建一个拉出式翻盖。当您第一次点击图像/按钮时,我希望它以动画形式显示整个图像。当您再次点击它时,我希望它能够动画回到原来的位置。然而,我对如何实现这一点有点困惑。我想知道是否有一种方法可以使这个按钮充当开关,以便我可以将其编程为简单地[在状态打开时执行此操作]和[在状态关闭时执行此操作]。非常感谢您的帮助!

最佳答案

-(IBAction)buttonClicked:(id)sender
{
UIButton *button = (UIButton *)sender;
if(button.tag==0)
{
// Do something to animate out to reveal the entire image
button.tag = 1;
}
else if(button.tag==1)
{
// Do something else to animate back to its original location
button.tag = 0;
}
}

关于iPhone UIButton 的作用类似于 UISwitch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5230073/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com