23
Swift中的@selector()?
我正在尝试创建一个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()) 但是没有任何效果,我在参考文献中找不到解决方案。