UITapGestureRecognizer unrecognized selector sent to instance

夙愿已清 提交于 2019-12-30 06:09:26

问题


I've searched for solutions to this problem but couldn't find anything that seems to address it in my case. I'm getting the above exception from a UITapGestureRecognizer.

Here's the simplified code:

import UIKit;

class ViewController : UIViewController, UIScrollViewDelegate
{
    @IBOutlet weak var scrollView:UIScrollView!;
    var imageView:UIImageView!;

    override func viewDidLoad()
    {
        super.viewDidLoad();

        ... set up imageView/scrollView here ...

        let doubleTapRecognizer = UITapGestureRecognizer(target: self, action: "onScrollViewDoubleTapped");
        doubleTapRecognizer.numberOfTapsRequired = 2;
        doubleTapRecognizer.numberOfTouchesRequired = 1;
        scrollView.addGestureRecognizer(doubleTapRecognizer);
    }


    func onScrollViewDoubleTapped(recognizer:UITapGestureRecognizer)
    {
    }
}

Can anyone tell what is wrong with this code? It seems all correct to me. I suspect that it has to do with assigning ViewController as delegate to scrollView (or vice versa)? However the ViewController is set as the delegate to scrollView. But maybe it's something else that causes this error?


回答1:


Try adding a colon to your selector string.

let doubleTapRecognizer = UITapGestureRecognizer(target: self, action: "onScrollViewDoubleTapped:");

As cabellicar123 mentioned, this indicates that the selector takes an argument.




回答2:


Swift 4 using #selector.

let tapGesture = UITapGestureRecognizer(target: self, action: #selector(didSelectItem(sender:)))

@objc func didSelectItem(sender: AnyObject?) {
    print("didSelectItem: \(sender)")
}



回答3:


Also try adding a parameter to your method:

...(target: self, action: "yourMethodName:")

func yourMethodName(sender: AnyObject?)
{
    println("Clicked yourMethodName")
}



回答4:


Maybe could help someone: I had this error because I declared private the selector method:

func setup() {
  let singleFingerTap = UITapGestureRecognizer(target: self, action: "didTapOnViewInteraction:")
  singleFingerTap.numberOfTapsRequired = 1
  self.viewInteraction.addGestureRecognizer(singleFingerTap)
}

private func didTapOnViewInteraction(recognizer: UITapGestureRecognizer) {

}

Removing "private" keyword, all works great!




回答5:


for swift 4

override func viewDidLoad() {
        super.viewDidLoad()

    let tap = UITapGestureRecognizer(target: self, action: #selector(SignUpViewController.click))
    userImage.addGestureRecognizer(tap)
    userImage.isUserInteractionEnabled = true
}

@objc func click()
{
    print("Tapped on Image")
}

where SignUpViewController is your viewcontroller name




回答6:


In my case, with Swift 4, the selector was correctly defined, but since the item with the gesture was inside a collection view, it was causing the selector not to be found. I implemented a custom cell and configured the selector inside of it

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "recent", for: indexPath) as! MyCollectionViewCell

cell.configureGestureWith(entry: recentEntries.sorted(by: {$0.createdAt > $1.createdAt})[indexPath.row], sender: self)

Hope this helps some one.



来源:https://stackoverflow.com/questions/25021571/uitapgesturerecognizer-unrecognized-selector-sent-to-instance

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!