是否可以创建引用方法的键路径?所有示例都是变量的路径。
我正在尝试这个:
class MyClass {
init() {
let myKeypath = \MyClass.handleMainAction
...
}
func handleMainAction() {...}
}
但它没有编译说Key path cannot refer to instance method 'handleMainAction()
KeyPaths用于属性。但是,你可以有效地做同样的事情。因为函数是swift中的第一类类型,所以可以创建对handleMainAction的引用并传递它:
//: Playground - noun: a place where people can play
import UIKit
import XCTest
import PlaygroundSupport
class MyClass {
var bar = 0
private func handleMainAction() -> Int {
bar = bar + 1
return bar
}
func getMyMainAction() -> ()->Int {
return self.handleMainAction
}
}
class AnotherClass {
func runSomeoneElsesBarFunc(passedFunction:() -> Int) {
let result = passedFunction()
print("What I got was \(result)")
}
}
let myInst = MyClass()
let anotherInst = AnotherClass()
let barFunc = myInst.getMyMainAction()
anotherInst.runSomeoneElsesBarFunc(passedFunction: barFunc)
anotherInst.runSomeoneElsesBarFunc(passedFunction: barFunc)
anotherInst.runSomeoneElsesBarFunc(passedFunction: barFunc)
这样可以正常工作,您可以将“barFunc”传递给任何其他类或方法,并且可以使用它。
您可以使用MyClass.handleMainAction
作为间接参考。它为您提供了一个以类实例作为输入参数的块,并返回相应的实例方法。
let ref = MyClass.handleMainAction //a block that returns the instance method
let myInstance = MyClass()
let instanceMethod = ref(myInstance)
instanceMethod() //invoke the instance method
关键是你可以传递/存储方法引用,就像你对关键路径所做的那样。您只需在需要调用方法时提供实际实例。