web-dev-qa-db-ja.com

Swift3のセレクター

なぜこれが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")
}
}
47
Chris

Selector("tap:")#selector(tap(gestureReconizer:))と書く必要があります

また、新しい Swift APIガイドライン に従ってtapをfunc tap(_ gestureRecognizer: UITapGestureRecognizer)として宣言する必要があります。この場合、セレクターは#selector(tap(_:))になります。

124
jjatie

Swift 3では、次のように機能します。

@IBOutlet var myView: UIView!
override func viewDidLoad() {
    super.viewDidLoad()

    let tap = UITapGestureRecognizer(target: self, action:#selector(handleTap))

    myView.addGestureRecognizer(tap)
}

func handleTap() {
    print("tapped")
}
19
Neen

Swift 3には新しい構文が付属しているため、Selector( "tap:")を使用する代わりに、#selector(tap(gestureReconizer :))は

2
Zeeshan

スウィフト3:

class MYPTempController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let btn = UIButton(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
        view.addSubview(btn)
        btn.addTarget(self, action: #selector(MYPTempController.btnClick), for: .touchUpInside)
    }
    @objc fileprivate func btnClick() {
        print("--click--")
    }
}

//带参数
btn.addTarget(self, action: #selector(MYPTempController.btnClick(_:)), for: .touchUpInside)
//监听方法
func btnClick(_ sender: UIButton) {
    print("--click--")
}
0
GeekMeng