gpt4 book ai didi

iOS No visible @interface for 'ViewController' 声明选择器 addGestureRecognizer 错误

转载 作者:行者123 更新时间:2023-12-01 17:31:15 25 4
gpt4 key购买 nike

我正在尝试将手势识别器添加到主视图,但出现此错误:

'ViewController' 没有可见的@interface 声明选择器 addGestureRecognizer 错误

在这条线上:

 [self addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self.view action:@selector(isTapped:)]];

你们中的任何人都知道错误的原因或我该如何解决此错误?

最佳答案

addGestureRecognizer 是 UIView 上的方法,而不是 UIViewController。

尝试

    [self.view addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(isTapped:)]];

关于iOS No visible @interface for 'ViewController' 声明选择器 addGestureRecognizer 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21501105/

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