Swift中的@selector()?

 加勒比小洁_149 发布于 2023-01-12 05:27

我正在尝试创建一个NSTimerin Swift但我遇到了一些麻烦.

NSTimer(timeInterval: 1, target: self, selector: test(), userInfo: nil, repeats: true)

test() 是同一个类中的函数.


我在编辑器中收到错误:

找不到接受提供的参数的'init'的重载

当我改变selector: test()selector: nil错误消失.

我试过了:

selector: test()

selector: test

selector: Selector(test())

但没有任何作用,我在参考文献中找不到解决方案.

13 个回答
  • 这是一个关于如何Selector在Swift 上使用该类的快速示例:

    override func viewDidLoad() {
        super.viewDidLoad()
    
        var rightButton = UIBarButtonItem(title: "Title", style: UIBarButtonItemStyle.Plain, target: self, action: Selector("method"))
        self.navigationItem.rightBarButtonItem = rightButton
    }
    
    func method() {
        // Something cool here   
    }
    

    请注意,如果作为字符串传递的方法不起作用,它将在运行时失败,而不是编译时间,并使应用程序崩溃.小心

    2023-01-12 05:29 回答
  • Swift 本身不使用选择器 - 在Objective-C中使用选择器的几种设计模式在Swift中的工作方式不同.(例如,在协议类型或is/ astests 上使用可选链接代替respondsToSelector:,并在任何地方使用闭包,而不是performSelector:为了更好的类型/内存安全性.)

    但是仍然有许多基于ObjC的重要API使用选择器,包括定时器和目标/动作模式.Swift提供了Selector使用它们的类型.(Swift自动使用它来代替ObjC的SEL类型.)

    在Swift 2.2(Xcode 7.3)及更高版本中(包括Swift 3/Xcode 8和Swift 4/Xcode 9):

    您可以Selector使用#selector表达式从Swift函数类型构造一个.

    let timer = Timer(timeInterval: 1, target: object,
                      selector: #selector(MyClass.test),
                      userInfo: nil, repeats: false)
    button.addTarget(object, action: #selector(MyClass.buttonTapped),
                     for: .touchUpInside)
    view.perform(#selector(UIView.insertSubview(_:aboveSubview:)),
                 with: button, with: otherButton)
    

    关于这种方法的好处是什么?函数引用由Swift编译器检查,因此您只能将#selector表达式用于实际存在且可用作选择器的类/方法对(请参阅下面的"选择器可用性").根据Swift 2.2+函数类型命名规则,您也可以根据需要自由选择函数.

    (这实际上是对ObjC @selector()指令的改进,因为编译器的-Wundeclared-selector检查仅验证指定的选择器是否存在.您传递的Swift函数引用#selector检查存在,类的成员资格和类型签名.)

    您传递给#selector表达式的函数引用还有一些额外的注意事项:

    具有相同基本名称的多个函数可以通过其参数标签使用上述函数引用语法(例如insertSubview(_:at:)vs insertSubview(_:aboveSubview:))来区分.但是如果函数没有参数,则消除歧义的唯一方法是使用as具有函数类型签名的强制转换(例如foo as () -> ()vs foo(_:)).

    Swift 3.0+中的属性getter/setter对有一个特殊的语法.例如,给定a var foo: Int,您可以使用#selector(getter: MyClass.foo)#selector(setter: MyClass.foo).

    一般注意事项:

    情况下#selector不能正常工作,并命名:有时候你没有一个函数的引用,使一个选择器(例如,用在ObjC运行时动态注册的方法).在这种情况下,您可以Selector从字符串构造一个:例如Selector("dynamicMethod:")- 虽然您丢失了编译器的有效性检查.执行此操作时,您需要遵循ObjC命名规则,包括:每个参数的冒号().

    选择器可用性:选择器引用的方法必须公开给ObjC运行时.在Swift 4中,暴露给ObjC的每个方法都必须在声明前面加上@objc属性.(在以前的版本中,在某些情况下,您可以免费获得该属性,但现在您必须明确声明它.)

    请记住,private符号也不会暴露给运行时 - 您的方法至少需要具有internal可见性.

    关键路径:这些与选择器相关但不完全相同.在Swift 3中也有一些特殊的语法:例如chris.valueForKeyPath(#keyPath(Person.friends.firstName)).有关详细信息,请参阅SE-0062.KeyPath在Swift 4中还有更多东西,所以请确保在适当的时候使用正确的基于KeyPath的API而不是选择器.

    您可以在使用Swift with Cocoa和Objective-C的" 与Objective-C API交互"下阅读有关选择器的更多信息.

    注意:Selector符合Swift 2.2之前StringLiteralConvertible,您可能会发现旧代码将裸字符串传递给采用选择器的API.您将要在Xcode中运行"转换为当前Swift语法"以获取使用它们#selector.

    2023-01-12 05:29 回答
  • Swift 2.2+和Swift 3更新

    使用新#selector表达式,这消除了使用字符串文字的需要,使得使用不易出错.以供参考:

    Selector("keyboardDidHide:")
    

    #selector(keyboardDidHide(_:))
    

    另见:Swift Evolution Proposal

    注意(Swift 4.0):

    如果使用#selector,则需要将该功能标记为@objc

    例:

    @objc func something(_ sender: UIButton)

    2023-01-12 05:35 回答
  • 自从Swift 3.0发布以来,声明一个适当的targetAction甚至更加微妙

    class MyCustomView : UIView {
    
        func addTapGestureRecognizer() {
    
            // the "_" is important
            let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(MyCustomView.handleTapGesture(_:)))
            tapGestureRecognizer.numberOfTapsRequired = 1
            addGestureRecognizer(tapGestureRecognizer)
        }
    
        // since Swift 3.0 this "_" in the method implementation is very important to 
        // let the selector understand the targetAction
        func handleTapGesture(_ tapGesture : UITapGestureRecognizer) {
    
            if tapGesture.state == .ended {
                print("TapGesture detected")
            }
        }
    }
    

    2023-01-12 05:39 回答
  • // for swift 2.2
    // version 1
    buttton.addTarget(self, action: #selector(ViewController.tappedButton), forControlEvents: .TouchUpInside)
    buttton.addTarget(self, action: #selector(ViewController.tappedButton2(_:)), forControlEvents: .TouchUpInside)
    
    // version 2
    buttton.addTarget(self, action: #selector(self.tappedButton), forControlEvents: .TouchUpInside)
    buttton.addTarget(self, action: #selector(self.tappedButton2(_:)), forControlEvents: .TouchUpInside)
    
    // version 3
    buttton.addTarget(self, action: #selector(tappedButton), forControlEvents: .TouchUpInside)
    buttton.addTarget(self, action: #selector(tappedButton2(_:)), forControlEvents: .TouchUpInside)
    
    func tappedButton() {
      print("tapped")
    }
    
    func tappedButton2(sender: UIButton) {
      print("tapped 2")
    }
    
    // swift 3.x
    button.addTarget(self, action: #selector(tappedButton(_:)), for: .touchUpInside)
    
    func tappedButton(_ sender: UIButton) {
      // tapped
    }
    
    button.addTarget(self, action: #selector(tappedButton(_:_:)), for: .touchUpInside)
    
    func tappedButton(_ sender: UIButton, _ event: UIEvent) {
      // tapped
    }
    

    2023-01-12 05:41 回答
  • Swift 4.1
    带有轻拍手势的样本

    let gestureRecognizer = UITapGestureRecognizer()
    self.view.addGestureRecognizer(gestureRecognizer)
    gestureRecognizer.addTarget(self, action: #selector(self.dismiss(completion:)))
    
    // Use destination 'Class Name' directly, if you selector (function) is not in same class.
    //gestureRecognizer.addTarget(self, action: #selector(DestinationClass.dismiss(completion:)))
    
    
    @objc func dismiss(completion: (() -> Void)?) {
          self.dismiss(animated: true, completion: completion)
    }
    

    有关更多详细信息,请参阅Apple的文档:选择器表达式

    2023-01-12 05:41 回答
  • 为了防止其他人遇到与NSTimer相同的问题,其中没有其他答案解决了这个问题,非常重要的是,如果你使用的是一个不直接或深层次地从NSObject继承的类(例如,手动创建swift文件),即使指定如下,其他任何答案都不会起作用:

    let timer = NSTimer(timeInterval: 1, target: self, selector: "test", 
                        userInfo: nil, repeats: false)
    func test () {}
    

    除了让类继承自NSObject之外,我没有改变任何其他东西,我停止了"无法识别的选择器"错误并使我的逻辑按预期工作.

    2023-01-12 05:41 回答
  • Swift 4.0

    你创建如下所示的选择器.

    1.将事件添加到如下按钮:

    button.addTarget(self, action: #selector(clickedButton(sender:)), for: UIControlEvents.touchUpInside)
    

    功能如下:

    @objc func clickedButton(sender: AnyObject) {
    
    }
    

    2023-01-12 05:43 回答
  • Create Refresh control using Selector method.   
        var refreshCntrl : UIRefreshControl!
        refreshCntrl = UIRefreshControl()
        refreshCntrl.tintColor = UIColor.whiteColor()
        refreshCntrl.attributedTitle = NSAttributedString(string: "Please Wait...")
        refreshCntrl.addTarget(self, action:"refreshControlValueChanged", forControlEvents: UIControlEvents.ValueChanged)
        atableView.addSubview(refreshCntrl)
    

    //刷新控制方法

    func refreshControlValueChanged(){
        atableView.reloadData()
        refreshCntrl.endRefreshing()
    
    }
    

    2023-01-12 05:46 回答
  • 此外,如果您的(Swift)类不是从Objective-C类下降,那么您必须在目标方法名称字符串的末尾添加冒号,并且必须将@objc属性与目标方法一起使用,例如

    var rightButton = UIBarButtonItem(title: "Title", style: UIBarButtonItemStyle.Plain, target: self, action: Selector("method"))
    
    @objc func method() {
        // Something cool here   
    } 
    

    否则您将在运行时收到"无法识别的选择器"错误.

    2023-01-12 05:47 回答
  • 对于未来的读者,我发现我遇到了一个问题,并且因为unrecognised selector sent to instance将目标标记func为私有而导致错误.

    func 必须公开显示通过与到选择的参考对象被调用.

    2023-01-12 05:49 回答
  • 如果您想将参数从NSTimer传递给函数,那么这是您的解决方案:

    var somethingToPass = "It worked"
    
    let timer = NSTimer.scheduledTimerWithTimeInterval(0.01, target: self, selector: "tester:", userInfo: somethingToPass, repeats: false)
    
    func tester(timer: NSTimer)
    {
        let theStringToPrint = timer.userInfo as String
        println(theStringToPrint)
    }
    

    在选择器文本(tester :)中包含冒号,您的参数在userInfo中.

    您的函数应该将NSTimer作为参数.然后只需提取userInfo即可获取传递的参数.

    2023-01-12 05:51 回答
  • 选择器是Objective-C中方法名称的内部表示.在Objective-C中,"@ selector(methodName)"会将源代码方法转换为SEL的数据类型.由于您无法在Swift中使用@selector语法(rickster就在那里),您必须直接手动将方法名称指定为String对象,或者将String对象传递给Selector类型.这是一个例子:

    var rightBarButton = UIBarButtonItem(
        title: "Logout", 
        style: UIBarButtonItemStyle.Plain, 
        target: self, 
        action:"logout"
    )
    

    要么

    var rightBarButton = UIBarButtonItem(
        title: "Logout", 
        style: UIBarButtonItemStyle.Plain, 
        target: self, 
        action:Selector("logout")
    )
    

    2023-01-12 06:05 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有