1. ホーム
  2. ios

[解決済み] swift3におけるセレクタ

2022-02-08 13:17:34

質問

なぜ、swift 3で動作しないのですか?と言って実行時にクラッシュしてしまいます。

'-[my_app_name.displayOtherAppsCtrl tap:]: 認識できないセレクタが送信されました。 をインスタンス 0x17eceb70 に送信します。

    override func viewDidLoad() {
    super.viewDidLoad()

    // Uncomment the following line to preserve selection between presentations
    // self.clearsSelectionOnViewWillAppear = false

    // Register cell classes
    //self.collectionView!.register(ImageCell.self, forCellWithReuseIdentifier: reuseIdentifier)

    // Do any additional setup after loading the view.

  let lpgr = UITapGestureRecognizer(target: self, action: Selector("tap:"))
    lpgr.delegate = self
    collectionView?.addGestureRecognizer(lpgr)
}

func tap(gestureReconizer: UITapGestureRecognizer) {
if gestureReconizer.state != UIGestureRecognizerState.ended {
  return
}

let p = gestureReconizer.location(in: self.collectionView)
let indexPath = self.collectionView?.indexPathForItem(at: p)

if let index = indexPath {
  //var cell = self.collectionView?.cellForItem(at: index)
  // do stuff with your cell, for example print the indexPath
  print(index.row)
} else {
  print("Could not find index path")
}
}

解決方法は?

Selector("tap:") は次のように書きます。 #selector(tap(gestureReconizer:))

また、タップの宣言は func tap(_ gestureRecognizer: UITapGestureRecognizer) のように、新しい Swift API ガイドライン この場合、セレクタは次のようになります。 #selector(tap(_:)) .