如果我有类似的东西:
void maybeHandleMessage: sender: AnyObject {
if isHandling() {
handle()
} else {
// forward action message to next responder in the responder chain
}
}
在else子句中我需要使用哪些代码来转发maybeHandleMessage?
答案 0 :(得分:0)
如果您的对象是UIResponder
的一种子类,则有一个方法
func nextResponder() -> UIResponder?
你可以尝试