gpt4 book ai didi

ios - 如何在 Objective-C 中按下第一个按钮时显示第二个按钮

转载 作者:行者123 更新时间:2023-11-29 00:09:38 26 4
gpt4 key购买 nike

我是 iPhone 编程新手( Objective-C )。我想制作在长按另一个按钮时可见的按钮。就像系统键盘样式一样。我应该通过按住手指来选择第一个或第二个按钮 :-) 我该怎么做,我找不到教程。谢谢

最佳答案

创建 UILongPressGestureRecognizer 实例并将其附加到您的 UIButton

-(IBAction)SelectImage:(id)sender
{
UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressMethod:)];
[self.button addGestureRecognizer:longPress];
}

然后创建处理手势的方法

- (void)longPressMethod:(UILongPressGestureRecognizer*)gesture 
{
if ( gesture.state == UIGestureRecognizerStateEnded )
{
NSLog(@"Long Press");
//Do your code here what you want to perform
}
}

关于ios - 如何在 Objective-C 中按下第一个按钮时显示第二个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46902969/

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