gpt4 book ai didi

ios - 以编程方式更改 UILongPressGestureRecognizer 的状态

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:27:57 25 4
gpt4 key购买 nike

我正在寻找一种方法来强制更改 UILongPressGestureRecognizer 的状态至 UIGestureRecognizerStateEndedUILongPressGestureRecognizer 创建我自己的“最大持续时间”扩展(基本上是为了创建一种触摸并保持超时功能)。

下面是我的尝试:

- (void)handleLongPressGestures:(UILongPressGestureRecognizer *)sender
{
if (sender.state == UIGestureRecognizerStateBegan)
{
NSLog(@"Hold Gesture Started");
timer = [NSTimer scheduledTimerWithTimeInterval:10.0 target:self selector:@selector(timesup:) userInfo:nil repeats:NO];
//perform a function - i.e. start something
}
else if(sender.state == UIGestureRecognizerStateEnded)
{
NSLog(@"Hold Gesture Complete");
[timer invalidate];
timer = nil;
//perform a function - i.e. stop something
}
}
-(void)timesup:(NSTimer *)timer {
NSLog(@"Timer Up!");
[longpress setState:UIGestureRecognizerStateEnded];
}

问题是[longpress setState:UIGestureRecognizerStateEnded];虽然在 xcode 中推荐,但不断抛出此错误:

No visible @interface for 'UILongPressGestureRecognizer' declares the selector 'setState:'

关于如何解决/规避此问题的任何想法?我试着在 SO 上寻找解决方案,但我什么也没找到。话虽这么说,如果这与已经回答的问题重复,我深表歉意 - 我只是没有看到它(我保证!)

最佳答案

您收到此错误是因为默认情况下,当您将 UIKit 导入您的实现文件时,它会导入 UIGestureRecognizer.h,该文件将其状态属性公开声明为只读。如果您希望能够设置此属性,则必须导入 UIGestureRecognizerSubclass.h,它将此属性重新声明为可读写。请注意,这意味着在 UIGestureRecognizer 的子类中使用,我不太了解它的底层工作原理,无法说这种用法是安全的。

#import <UIKit/UIGestureRecognizerSubclass.h>

关于ios - 以编程方式更改 UILongPressGestureRecognizer 的状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24874261/

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