我正在尝试用 swift 语言创建与以下方法签名 (Objective-C) 等效的方法。我无法得到关于如何为此获得正确等价物的答案。非常感谢任何帮助。
- (void)myMethodMyObject*)firstParam
setCallbackObjectid)obj
withMySelectorSEL)selector {
[obj performSelector:selector withObject:nil afterDelay:0]
}
第一:
The performSelector: method and related selector-invoking methods are not imported in Swift because they are inherently unsafe.
如果您仍想以这种方式实现它,请阅读下文。
你可以使用 NSTimer
:
var myTimer: NSTimer = NSTimer.scheduledTimerWithTimeInterval(0.0, target: self, selector: "selectorMethod", userInfo: nil, repeats: false)
String 可以用在需要 Selector
的地方。它将自动转换(自动装箱)。
延迟当然可以更高:0.1 等于十分之一秒。
调用类似的方法:
func selectorMethod() {
...
}
我们需要在类上使用选择器之前进行检查。但是 respondsToSelector:
在 NSObject
协议(protocol)中,因此您必须至少从该协议(protocol)(或从它的子类)派生。
为了清楚起见,这里是例子。
class Test {
func myMethod(firstParam: String, setCallbackObject obj: AnyObject, withMySelector selector: Selector) {
if obj.respondsToSelector(selector) {
var myTimer: NSTimer = NSTimer.scheduledTimerWithTimeInterval(0.0, target: obj, selector: selector, userInfo: nil, repeats: false)
myTimer.fire()
} else {
println("Warning: does not respond to given selector")
}
}
}
class Test2: NSObject {
func selectorMethod() {
print("worked")
}
}
var test: Test = Test()
var callBackObj: Test2 = Test2()
test.myMethod("thisfirstis", setCallbackObject: callBackObj, withMySelector: Selector("selectorMethod"))
workedProgram ended with exit code: 0
关于ios - 如何在 swift 中使用 performSelector 实现回调/选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24468577/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |