热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

UIPanGestureRecognizer没有名为touchesBegan的成员

如何解决《UIPanGestureRecognizer没有名为touchesBegan的成员》经验,为你挑选了1个好方法。

我正在尝试将UIPanGestureRecognizer子类化,我想我可能会做一些愚蠢的事情.我试图覆盖UIPanGestureRecognizer从UIGestureRecognizer继承的方法时遇到错误.

我有这个代码

class VPGesture: UIPanGestureRecognizer {
    override func touchesBegan(touches: NSSet!, withEvent event: UIEvent!) {
        super.touchesBegan(touches, withEvent: event)
    }

    override func touchesMoved(touches: NSSet!, withEvent event: UIEvent!) {
        super.touchesMoved(touches, withEvent: event);
    }

    override func touchesEnded(touches: NSSet!, withEvent event: UIEvent!) {
        super.touchesEnded(touches, withEvent: event);
    }

    override func touchesCancelled(touches: NSSet!, withEvent event: UIEvent!) {
        super.touchesCancelled(touches, withEvent: event);
    }
}

这产生了这些错误

在此输入图像描述

非常感谢您的帮助.



1> guojiubo..:

当前接受的答案并不完全正确,实际上,如果要子类化UIGestureRecognizer,则应导入UIGestureRecognizerSubclass.h头文件,该文件在https://developer.apple.com/library/ios/documentation/UIKit/Reference中有描述./UIGestureRecognizer_Class/index.html,请参阅子类注释部分.

与在Swift中一样,这可以作为流程完成:

import UIKit.UIGestureRecognizerSubclass

那你就准备好了.


推荐阅读
author-avatar
双子-殇
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有