Skip to content

Instantly share code, notes, and snippets.

@salexkidd
Created October 24, 2018 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salexkidd/77cac8c35705ab9fa9f154da84ae5af6 to your computer and use it in GitHub Desktop.
Save salexkidd/77cac8c35705ab9fa9f154da84ae5af6 to your computer and use it in GitHub Desktop.
Chase responder chain
var res: NSResponder? = self.nextResponder
print("---------------------------------------------")
while(true)
{
if res == nil { break }
print(res)
res = res?.nextResponder
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment